summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-14254.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /tests/ui/resolve/issue-14254.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/resolve/issue-14254.stderr')
-rw-r--r--tests/ui/resolve/issue-14254.stderr182
1 files changed, 182 insertions, 0 deletions
diff --git a/tests/ui/resolve/issue-14254.stderr b/tests/ui/resolve/issue-14254.stderr
new file mode 100644
index 000000000..690a40f7e
--- /dev/null
+++ b/tests/ui/resolve/issue-14254.stderr
@@ -0,0 +1,182 @@
+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 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 refer to the associated function
+ |
+LL | 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 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 refer to the associated function
+ |
+LL | 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 value `bah` in this scope
+ --> $DIR/issue-14254.rs:64:9
+ |
+LL | bah;
+ | ^^^
+ |
+help: you might have meant to refer to the associated function
+ |
+LL | Self::bah;
+ | ~~~~~~~~~
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:73:9
+ |
+LL | bah;
+ | ^^^
+ |
+help: you might have meant to refer to the associated function
+ |
+LL | Self::bah;
+ | ~~~~~~~~~
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:82:9
+ |
+LL | bah;
+ | ^^^
+ |
+help: you might have meant to refer to the associated function
+ |
+LL | Self::bah;
+ | ~~~~~~~~~
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:91:9
+ |
+LL | bah;
+ | ^^^
+ |
+help: you might have meant to refer to the associated function
+ |
+LL | Self::bah;
+ | ~~~~~~~~~
+
+error[E0425]: cannot find value `bah` in this scope
+ --> $DIR/issue-14254.rs:100:9
+ |
+LL | bah;
+ | ^^^
+ |
+help: you might have meant to refer to the associated function
+ |
+LL | Self::bah;
+ | ~~~~~~~~~
+
+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 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 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 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 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 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 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 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: aborting due to 24 previous errors
+
+For more information about this error, try `rustc --explain E0425`.