summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/type-ascription-instead-of-path-in-type.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/suggestions/type-ascription-instead-of-path-in-type.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/suggestions/type-ascription-instead-of-path-in-type.stderr')
-rw-r--r--tests/ui/suggestions/type-ascription-instead-of-path-in-type.stderr41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/ui/suggestions/type-ascription-instead-of-path-in-type.stderr b/tests/ui/suggestions/type-ascription-instead-of-path-in-type.stderr
new file mode 100644
index 000000000..fcff02e09
--- /dev/null
+++ b/tests/ui/suggestions/type-ascription-instead-of-path-in-type.stderr
@@ -0,0 +1,41 @@
+error[E0405]: cannot find trait `B` in this scope
+ --> $DIR/type-ascription-instead-of-path-in-type.rs:6:18
+ |
+LL | let _: Vec<A:B> = A::B;
+ | ^ not found in this scope
+ |
+help: you might have meant to write a path instead of an associated type bound
+ |
+LL | let _: Vec<A::B> = A::B;
+ | ~~
+
+error[E0658]: associated type bounds are unstable
+ --> $DIR/type-ascription-instead-of-path-in-type.rs:6:16
+ |
+LL | let _: Vec<A:B> = A::B;
+ | ^^^
+ |
+ = note: see issue #52662 <https://github.com/rust-lang/rust/issues/52662> for more information
+ = help: add `#![feature(associated_type_bounds)]` to the crate attributes to enable
+
+error[E0107]: this struct takes at least 1 generic argument but 0 generic arguments were supplied
+ --> $DIR/type-ascription-instead-of-path-in-type.rs:6:12
+ |
+LL | let _: Vec<A:B> = A::B;
+ | ^^^ expected at least 1 generic argument
+ |
+help: add missing generic argument
+ |
+LL | let _: Vec<T, A:B> = A::B;
+ | ++
+
+error[E0229]: associated type bindings are not allowed here
+ --> $DIR/type-ascription-instead-of-path-in-type.rs:6:16
+ |
+LL | let _: Vec<A:B> = A::B;
+ | ^^^ associated type not allowed here
+
+error: aborting due to 4 previous errors
+
+Some errors have detailed explanations: E0107, E0229, E0405, E0658.
+For more information about an error, try `rustc --explain E0107`.