summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/incomplete-inference.rs
blob: 4c8bf2cfca11e75e9faee943e65c572560546444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(type_alias_impl_trait)]

type Foo = impl Sized;

fn bar() -> Foo {
    None
    //~^ ERROR: type annotations needed [E0282]
}

fn baz() -> Foo {
    Some(())
}

fn main() {}