]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-impl-trait/no_inferrable_concrete_type.rs
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / type-alias-impl-trait / no_inferrable_concrete_type.rs
1 // Issue 52985: user code provides no use case that allows a type alias `impl Trait`
2 // We now emit a 'unconstrained opaque type' error
3
4 #![feature(type_alias_impl_trait)]
5
6 type Foo = impl Copy; //~ unconstrained opaque type
7
8 // make compiler happy about using 'Foo'
9 fn bar(x: Foo) -> Foo {
10     x
11 }
12
13 fn main() {
14     let _: Foo = std::mem::transmute(0u8);
15 }