summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/where_with_bound.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/where_with_bound.rs')
-rw-r--r--src/test/ui/parser/where_with_bound.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/test/ui/parser/where_with_bound.rs b/src/test/ui/parser/where_with_bound.rs
deleted file mode 100644
index 3ca45f188..000000000
--- a/src/test/ui/parser/where_with_bound.rs
+++ /dev/null
@@ -1,5 +0,0 @@
-fn foo<T>() where <T>::Item: ToString, T: Iterator { }
-//~^ ERROR generic parameters on `where` clauses are reserved for future use
-//~| ERROR cannot find type `Item` in the crate root
-
-fn main() {}