summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/unsized2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/unsized2.rs')
-rw-r--r--src/test/ui/parser/unsized2.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/ui/parser/unsized2.rs b/src/test/ui/parser/unsized2.rs
new file mode 100644
index 000000000..21370b329
--- /dev/null
+++ b/src/test/ui/parser/unsized2.rs
@@ -0,0 +1,7 @@
+// Test syntax checks for `type` keyword.
+
+fn f<X>() {}
+
+pub fn main() {
+ f<type>(); //~ ERROR expected expression, found keyword `type`
+}