rustc/tests/ui/impl-header-lifetime-elision/inherent-impl.rs
2023-08-02 10:33:26 +02:00

10 lines
122 B
Rust

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