rustc/tests/ui/impl-header-lifetime-elision/inherent-impl.rs
2024-06-21 09:39:33 +02:00

10 lines
123 B
Rust

//@ build-pass (FIXME(62277): could be check-pass?)
struct Foo<'a>(&'a u8);
impl Foo<'_> {
fn x() {}
}
fn main() {}