summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-path-err-node-types.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/type/type-path-err-node-types.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/type/type-path-err-node-types.stderr')
-rw-r--r--src/test/ui/type/type-path-err-node-types.stderr39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/test/ui/type/type-path-err-node-types.stderr b/src/test/ui/type/type-path-err-node-types.stderr
deleted file mode 100644
index c1ae10efa..000000000
--- a/src/test/ui/type/type-path-err-node-types.stderr
+++ /dev/null
@@ -1,39 +0,0 @@
-error[E0433]: failed to resolve: use of undeclared type `NonExistent`
- --> $DIR/type-path-err-node-types.rs:15:5
- |
-LL | NonExistent::Assoc::<u8>;
- | ^^^^^^^^^^^ use of undeclared type `NonExistent`
-
-error[E0412]: cannot find type `Nonexistent` in this scope
- --> $DIR/type-path-err-node-types.rs:7:12
- |
-LL | let _: Nonexistent<u8, Assoc = u16>;
- | ^^^^^^^^^^^ not found in this scope
-
-error[E0576]: cannot find method or associated constant `nonexistent` in trait `Tr`
- --> $DIR/type-path-err-node-types.rs:11:21
- |
-LL | <u8 as Tr<u8>>::nonexistent();
- | ^^^^^^^^^^^ not found in `Tr`
-
-error[E0425]: cannot find value `nonexistent` in this scope
- --> $DIR/type-path-err-node-types.rs:19:5
- |
-LL | nonexistent.nonexistent::<u8>();
- | ^^^^^^^^^^^ not found in this scope
-
-error[E0282]: type annotations needed
- --> $DIR/type-path-err-node-types.rs:23:14
- |
-LL | let _ = |a, b: _| -> _ { 0 };
- | ^
- |
-help: consider giving this closure parameter an explicit type
- |
-LL | let _ = |a: _, b: _| -> _ { 0 };
- | +++
-
-error: aborting due to 5 previous errors
-
-Some errors have detailed explanations: E0282, E0412, E0425, E0433, E0576.
-For more information about an error, try `rustc --explain E0282`.