rust/tests/ui/type-alias-impl-trait/no_inferrable_concrete_type.rs

21 lines
436 B
Rust

// Issue 52985: user code provides no use case that allows a type alias `impl Trait`
// We now emit a 'unconstrained opaque type' error
#![feature(type_alias_impl_trait)]
mod foo {
pub type Foo = impl Copy;
//~^ ERROR unconstrained opaque type
// make compiler happy about using 'Foo'
pub fn bar(x: Foo) -> Foo {
x
}
}
fn main() {
unsafe {
let _: foo::Foo = std::mem::transmute(0u8);
}
}