Files
rust/tests/ui/self/elision/ref-mut-self.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
982 B
Rust
Raw Normal View History

//@ run-rustfix
#![allow(non_snake_case, dead_code)]
2019-06-28 14:46:45 -04:00
use std::pin::Pin;
2024-05-07 19:45:51 +00:00
struct Struct {}
2019-06-28 14:46:45 -04:00
impl Struct {
// Test using `&mut self` sugar:
fn ref_self(&mut self, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
// Test using `&mut Self` explicitly:
fn ref_Self(self: &mut Self, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn box_ref_Self(self: Box<&mut Self>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn pin_ref_Self(self: Pin<&mut Self>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn box_box_ref_Self(self: Box<Box<&mut Self>>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
fn box_pin_ref_Self(self: Box<Pin<&mut Self>>, f: &u32) -> &u32 {
f
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
2019-06-28 14:46:45 -04:00
}
}
2024-05-07 19:45:51 +00:00
fn main() {}