rust/src/test/ui/impl-header-lifetime-elision/inherent-impl.rs
2019-07-03 06:30:28 +09: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() {}