mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
26 lines
292 B
Rust
26 lines
292 B
Rust
// run-pass
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
#[allow(dead_code)]
|
|
fn foo(self) {
|
|
panic!("wrong method!")
|
|
}
|
|
}
|
|
|
|
trait Trait {
|
|
fn foo(self);
|
|
}
|
|
|
|
impl<'a,'b,'c> Trait for &'a &'b &'c Foo {
|
|
fn foo(self) {
|
|
// ok
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x = &(&(&Foo));
|
|
x.foo();
|
|
}
|