summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/missing-closing-angle-bracket-eq-constraint.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/parser/missing-closing-angle-bracket-eq-constraint.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/parser/missing-closing-angle-bracket-eq-constraint.stderr')
-rw-r--r--tests/ui/parser/missing-closing-angle-bracket-eq-constraint.stderr66
1 files changed, 66 insertions, 0 deletions
diff --git a/tests/ui/parser/missing-closing-angle-bracket-eq-constraint.stderr b/tests/ui/parser/missing-closing-angle-bracket-eq-constraint.stderr
new file mode 100644
index 000000000..bad241634
--- /dev/null
+++ b/tests/ui/parser/missing-closing-angle-bracket-eq-constraint.stderr
@@ -0,0 +1,66 @@
+error: expected one of `,`, `:`, or `>`, found `=`
+ --> $DIR/missing-closing-angle-bracket-eq-constraint.rs:7:23
+ |
+LL | let v : Vec<(u32,_) = vec![];
+ | - - ^ expected one of `,`, `:`, or `>`
+ | | |
+ | | maybe try to close unmatched angle bracket
+ | while parsing the type for `v`
+ |
+help: you might have meant to end the type parameters here
+ |
+LL | let v : Vec<(u32,_)> = vec![];
+ | +
+
+error: expected one of `!`, `(`, `+`, `,`, `::`, `<`, or `>`, found `{`
+ --> $DIR/missing-closing-angle-bracket-eq-constraint.rs:13:32
+ |
+LL | let foo : Foo::<T1, T2 = Foo {_a : arg1, _b : arg2};
+ | --- ^ expected one of 7 possible tokens
+ | |
+ | while parsing the type for `foo`
+ |
+help: you might have meant to end the type parameters here
+ |
+LL | let foo : Foo::<T1>, T2 = Foo {_a : arg1, _b : arg2};
+ | +
+
+error: expected one of `,`, `:`, or `>`, found `=`
+ --> $DIR/missing-closing-angle-bracket-eq-constraint.rs:18:18
+ |
+LL | let v : Vec<'a = vec![];
+ | - -- ^ expected one of `,`, `:`, or `>`
+ | | |
+ | | maybe try to close unmatched angle bracket
+ | while parsing the type for `v`
+ |
+help: you might have meant to end the type parameters here
+ |
+LL | let v : Vec<'a> = vec![];
+ | +
+
+error[E0282]: type annotations needed for `Vec<T>`
+ --> $DIR/missing-closing-angle-bracket-eq-constraint.rs:7:7
+ |
+LL | let v : Vec<(u32,_) = vec![];
+ | ^
+ |
+help: consider giving `v` an explicit type, where the type for type parameter `T` is specified
+ |
+LL | let v: Vec<T> : Vec<(u32,_) = vec![];
+ | ++++++++
+
+error[E0282]: type annotations needed for `Vec<T>`
+ --> $DIR/missing-closing-angle-bracket-eq-constraint.rs:18:7
+ |
+LL | let v : Vec<'a = vec![];
+ | ^
+ |
+help: consider giving `v` an explicit type, where the type for type parameter `T` is specified
+ |
+LL | let v: Vec<T> : Vec<'a = vec![];
+ | ++++++++
+
+error: aborting due to 5 previous errors
+
+For more information about this error, try `rustc --explain E0282`.