summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/unmatched-langle-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/unmatched-langle-1.rs')
-rw-r--r--src/test/ui/parser/unmatched-langle-1.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/parser/unmatched-langle-1.rs b/src/test/ui/parser/unmatched-langle-1.rs
new file mode 100644
index 000000000..fdf2ae398
--- /dev/null
+++ b/src/test/ui/parser/unmatched-langle-1.rs
@@ -0,0 +1,9 @@
+// Check that a suggestion is issued if there are too many `<`s in a
+// generic argument list, and that the parser recovers properly.
+
+fn main() {
+ foo::<<<<Ty<i32>>();
+ //~^ ERROR: unmatched angle brackets
+ //~| ERROR: cannot find function `foo` in this scope [E0425]
+ //~| ERROR: cannot find type `Ty` in this scope [E0412]
+}