summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0055.rs
blob: a3ade92d24f4ce1bca91237e3d1cf8c66c47c57e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![recursion_limit="2"]
struct Foo;

impl Foo {
    fn foo(&self) {}
}

fn main() {
    let foo = Foo;
    let ref_foo = &&Foo;
    ref_foo.foo();
    //~^ ERROR E0055
}