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, 9 insertions, 0 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
new file mode 100644
index 000000000..4bcf90552
--- /dev/null
+++ b/src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs
@@ -0,0 +1,9 @@
+#![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() {}