about summary refs log tree commit diff
path: root/tests/ui/type-alias-impl-trait/issue-52843.rs
blob: fd28eb8381d6da721e34bdaadcb23936a90d8c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(type_alias_impl_trait)]

type Foo<T> = impl Default;

#[allow(unused)]
#[define_opaque(Foo)]
fn foo<T: Default>(t: T) -> Foo<T> {
    t
    //~^ ERROR: the trait bound `T: Default` is not satisfied
}

struct NotDefault;

fn main() {
    let _ = Foo::<NotDefault>::default();
}