summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/inaccessible_type_aliases.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/imports/inaccessible_type_aliases.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/imports/inaccessible_type_aliases.stderr')
-rw-r--r--src/test/ui/imports/inaccessible_type_aliases.stderr30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/ui/imports/inaccessible_type_aliases.stderr b/src/test/ui/imports/inaccessible_type_aliases.stderr
new file mode 100644
index 000000000..ef2242460
--- /dev/null
+++ b/src/test/ui/imports/inaccessible_type_aliases.stderr
@@ -0,0 +1,30 @@
+error[E0412]: cannot find type `Foo` in this scope
+ --> $DIR/inaccessible_type_aliases.rs:11:12
+ |
+LL | let x: Foo = 100;
+ | ^^^ not found in this scope
+ |
+note: these type aliases exist but are inaccessible
+ --> $DIR/inaccessible_type_aliases.rs:2:5
+ |
+LL | type Foo = u64;
+ | ^^^^^^^^^^^^^^^ `a::Foo`: not accessible
+...
+LL | type Foo = u64;
+ | ^^^^^^^^^^^^^^^ `b::Foo`: not accessible
+
+error[E0412]: cannot find type `Bar` in this scope
+ --> $DIR/inaccessible_type_aliases.rs:12:12
+ |
+LL | let y: Bar = 100;
+ | ^^^ not found in this scope
+ |
+note: type alias `a::Bar` exists but is inaccessible
+ --> $DIR/inaccessible_type_aliases.rs:3:5
+ |
+LL | type Bar = u64;
+ | ^^^^^^^^^^^^^^^ not accessible
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0412`.