summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-103474.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/issue-103474.rs')
-rw-r--r--src/test/ui/resolve/issue-103474.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/ui/resolve/issue-103474.rs b/src/test/ui/resolve/issue-103474.rs
deleted file mode 100644
index 14f2259e1..000000000
--- a/src/test/ui/resolve/issue-103474.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-struct S {}
-impl S {
- fn first(&self) {}
-
- fn second(&self) {
- first()
- //~^ ERROR cannot find function `first` in this scope
- }
-
- fn third(&self) {
- no_method_err()
- //~^ ERROR cannot find function `no_method_err` in this scope
- }
-}
-
-// https://github.com/rust-lang/rust/pull/103531#discussion_r1004728080
-struct Foo {
- i: i32,
-}
-
-impl Foo {
- fn needs_self() {
- this.i
- //~^ ERROR cannot find value `this` in this scope
- }
-}
-
-fn main() {}