os-rust/src/test/ui/issues/issue-17740.rs

19 lines
361 B
Rust
Raw Normal View History

struct Foo<'a> {
data: &'a[u8],
}
impl <'a> Foo<'a>{
fn bar(self: &mut Foo) {
//~^ mismatched method receiver
//~| expected type `Foo<'a>`
//~| found type `Foo<'_>`
//~| lifetime mismatch
//~| mismatched method receiver
//~| expected type `Foo<'a>`
//~| found type `Foo<'_>`
//~| lifetime mismatch
}
}
fn main() {}