blob: b24959d7207200afdd2a19c2fce03982b42ee843 [file] [log] [blame]
#![feature(type_alias_impl_trait)]
type Foo<T> = impl Default;
//~^ ERROR: the trait bound `T: Default` is not satisfied
#[allow(unused)]
fn foo<T: Default>(t: T) -> Foo<T> {
t
}
struct NotDefault;
fn main() {
let _ = Foo::<NotDefault>::default();
}