summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-14254.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/issue-14254.stderr')
-rw-r--r--src/test/ui/resolve/issue-14254.stderr147
1 files changed, 147 insertions, 0 deletions
diff --git a/src/test/ui/resolve/issue-14254.stderr b/src/test/ui/resolve/issue-14254.stderr
new file mode 100644
index 000000000..b1f45adb8
--- /dev/null
+++ b/src/test/ui/resolve/issue-14254.stderr
@@ -0,0 +1,147 @@
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:19:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `a` in this scope
+ --> $DIR/issue-14254.rs:21:9
+ |
+LL | a;
+ | ^ not found in this scope
+
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:28:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `x` in this scope
+ --> $DIR/issue-14254.rs:30:9
+ |
+LL | x;
+ | ^ help: you might have meant to use the available field: `self.x`
+
+error[E0425]: cannot find value `y` in this scope
+ --> $DIR/issue-14254.rs:32:9
+ |
+LL | y;
+ | ^ help: you might have meant to use the available field: `self.y`
+
+error[E0425]: cannot find value `a` in this scope
+ --> $DIR/issue-14254.rs:34:9
+ |
+LL | a;
+ | ^ not found in this scope
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:36:9
+ |
+LL | bah;
+ | ^^^ help: you might have meant to call the associated function: `Self::bah`
+
+error[E0425]: cannot find value `b` in this scope
+ --> $DIR/issue-14254.rs:38:9
+ |
+LL | b;
+ | ^ not found in this scope
+
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:45:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `x` in this scope
+ --> $DIR/issue-14254.rs:47:9
+ |
+LL | x;
+ | ^ help: you might have meant to use the available field: `self.x`
+
+error[E0425]: cannot find value `y` in this scope
+ --> $DIR/issue-14254.rs:49:9
+ |
+LL | y;
+ | ^ help: you might have meant to use the available field: `self.y`
+
+error[E0425]: cannot find value `a` in this scope
+ --> $DIR/issue-14254.rs:51:9
+ |
+LL | a;
+ | ^ not found in this scope
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:53:9
+ |
+LL | bah;
+ | ^^^ help: you might have meant to call the associated function: `Self::bah`
+
+error[E0425]: cannot find value `b` in this scope
+ --> $DIR/issue-14254.rs:55:9
+ |
+LL | b;
+ | ^ not found in this scope
+
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:62:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:64:9
+ |
+LL | bah;
+ | ^^^ help: you might have meant to call the associated function: `Self::bah`
+
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:71:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:73:9
+ |
+LL | bah;
+ | ^^^ help: you might have meant to call the associated function: `Self::bah`
+
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:80:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:82:9
+ |
+LL | bah;
+ | ^^^ help: you might have meant to call the associated function: `Self::bah`
+
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:89:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:91:9
+ |
+LL | bah;
+ | ^^^ help: you might have meant to call the associated function: `Self::bah`
+
+error[E0425]: cannot find function `baz` in this scope
+ --> $DIR/issue-14254.rs:98:9
+ |
+LL | baz();
+ | ^^^ help: you might have meant to call the method: `self.baz`
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:100:9
+ |
+LL | bah;
+ | ^^^ help: you might have meant to call the associated function: `Self::bah`
+
+error: aborting due to 24 previous errors
+
+For more information about this error, try `rustc --explain E0425`.