summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-24968.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/resolve/issue-24968.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/resolve/issue-24968.stderr')
-rw-r--r--src/test/ui/resolve/issue-24968.stderr57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/test/ui/resolve/issue-24968.stderr b/src/test/ui/resolve/issue-24968.stderr
new file mode 100644
index 000000000..7e539d258
--- /dev/null
+++ b/src/test/ui/resolve/issue-24968.stderr
@@ -0,0 +1,57 @@
+error[E0433]: failed to resolve: `Self` is only available in impls, traits, and type definitions
+ --> $DIR/issue-24968.rs:21:19
+ |
+LL | const FOO2: u32 = Self::bar();
+ | ^^^^ `Self` is only available in impls, traits, and type definitions
+
+error[E0433]: failed to resolve: `Self` is only available in impls, traits, and type definitions
+ --> $DIR/issue-24968.rs:27:22
+ |
+LL | static FOO_S2: u32 = Self::bar();
+ | ^^^^ `Self` is only available in impls, traits, and type definitions
+
+error[E0411]: cannot find type `Self` in this scope
+ --> $DIR/issue-24968.rs:3:11
+ |
+LL | fn foo(_: Self) {
+ | --- ^^^^ `Self` is only available in impls, traits, and type definitions
+ | |
+ | `Self` not allowed in a function
+
+error[E0411]: cannot find type `Self` in this scope
+ --> $DIR/issue-24968.rs:8:12
+ |
+LL | fn foo2() {
+ | ---- `Self` not allowed in a function
+LL | let x: Self;
+ | ^^^^ `Self` is only available in impls, traits, and type definitions
+
+error[E0411]: cannot find type `Self` in this scope
+ --> $DIR/issue-24968.rs:14:5
+ |
+LL | type Foo<T>
+ | --- `Self` not allowed in a type alias
+LL | where
+LL | Self: Clone,
+ | ^^^^ `Self` is only available in impls, traits, and type definitions
+
+error[E0411]: cannot find type `Self` in this scope
+ --> $DIR/issue-24968.rs:18:12
+ |
+LL | const FOO: Self = 0;
+ | --- ^^^^ `Self` is only available in impls, traits, and type definitions
+ | |
+ | `Self` not allowed in a constant item
+
+error[E0411]: cannot find type `Self` in this scope
+ --> $DIR/issue-24968.rs:24:15
+ |
+LL | static FOO_S: Self = 0;
+ | ----- ^^^^ `Self` is only available in impls, traits, and type definitions
+ | |
+ | `Self` not allowed in a static item
+
+error: aborting due to 7 previous errors
+
+Some errors have detailed explanations: E0411, E0433.
+For more information about an error, try `rustc --explain E0411`.