rust/tests/ui/impl-trait/in-trait/dump.rs
2025-03-23 14:11:04 +00:00

15 lines
283 B
Rust

//@ compile-flags: -Zverbose-internals
#![feature(rustc_attrs)]
#![rustc_hidden_type_of_opaques]
trait Foo {
fn hello(&self) -> impl Sized;
}
fn hello<'s, T: Foo>(x: &'s T) -> impl Sized + use<'s, T> {
//~^ ERROR <T as Foo>::{synthetic#0}<'s/#1>
x.hello()
}
fn main() {}