rust/tests/crashes/133275-1.rs

14 lines
189 B
Rust

//@ known-bug: #133275
#![feature(const_trait_impl)]
#![feature(associated_type_defaults)]
#[const_trait]
trait Foo3<T>
where
Self::Baz: Clone,
{
type Baz = T;
}
pub fn main() {}