mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
381 B
Rust
18 lines
381 B
Rust
struct Foo<'a> {
|
|
data: &'a[u8],
|
|
}
|
|
|
|
impl <'a> Foo<'a>{
|
|
fn bar(self: &mut Foo) {
|
|
//~^ mismatched `self` parameter type
|
|
//~| expected struct `Foo<'a>`
|
|
//~| found struct `Foo<'_>`
|
|
//~| lifetime mismatch
|
|
//~| mismatched `self` parameter type
|
|
//~| expected struct `Foo<'a>`
|
|
//~| found struct `Foo<'_>`
|
|
//~| lifetime mismatch
|
|
}
|
|
}
|
|
|
|
fn main() {}
|