mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
199 B
Rust
17 lines
199 B
Rust
// run-pass
|
|
struct S<'a>(&'a ());
|
|
|
|
impl<'a> S<'a> {
|
|
fn foo(self) -> &'a () {
|
|
<Self>::bar(self)
|
|
}
|
|
|
|
fn bar(self) -> &'a () {
|
|
self.0
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
S(&()).foo();
|
|
}
|