summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs')
-rw-r--r--src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs b/src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs
deleted file mode 100644
index 4bcf90552..000000000
--- a/src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-#![feature(unboxed_closures)]
-
-trait Trait {}
-
-fn f<F:Trait(isize) -> isize>(x: F) {}
-//~^ ERROR this trait takes 0 generic arguments but 1 generic argument
-//~| ERROR associated type `Output` not found for `Trait`
-
-fn main() {}