mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
22 lines
377 B
Rust
22 lines
377 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
trait Trait {
|
|
fn method(self) -> isize;
|
|
}
|
|
|
|
struct Wrapper<T> {
|
|
field: T
|
|
}
|
|
|
|
impl<'a, T> Trait for &'a Wrapper<T> where &'a T: Trait {
|
|
fn method(self) -> isize {
|
|
let r: &'a T = &self.field;
|
|
Trait::method(r); // these should both work
|
|
r.method()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|