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, 0 insertions, 9 deletions
diff --git a/src/test/ui/parser/unmatched-langle-1.rs b/src/test/ui/parser/unmatched-langle-1.rs
deleted file mode 100644
index fdf2ae398..000000000
--- a/src/test/ui/parser/unmatched-langle-1.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// 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]
-}