rust/tests/ui/impl-header-lifetime-elision/inherent-impl.rs
2023-01-11 09:32:08 +00: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() {}