summaryrefslogtreecommitdiffstats
path: root/src/test/ui/self/suggest-self-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/self/suggest-self-2.rs')
-rw-r--r--src/test/ui/self/suggest-self-2.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/self/suggest-self-2.rs b/src/test/ui/self/suggest-self-2.rs
deleted file mode 100644
index 1e001827e..000000000
--- a/src/test/ui/self/suggest-self-2.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-struct Foo {}
-
-impl Foo {
- fn foo(&self) {
- bar(self);
- //~^ ERROR cannot find function `bar` in this scope
- //~| HELP try calling `bar` as a method
-
- bar(&&self, 102);
- //~^ ERROR cannot find function `bar` in this scope
- //~| HELP try calling `bar` as a method
-
- bar(&mut self, 102, &"str");
- //~^ ERROR cannot find function `bar` in this scope
- //~| HELP try calling `bar` as a method
-
- bar();
- //~^ ERROR cannot find function `bar` in this scope
-
- self.bar();
- //~^ ERROR no method named `bar` found for reference
- }
-}
-
-fn main() {}