diff options
Diffstat (limited to 'tests/ui/parser/unsized2.rs')
-rw-r--r-- | tests/ui/parser/unsized2.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/parser/unsized2.rs b/tests/ui/parser/unsized2.rs new file mode 100644 index 000000000..21370b329 --- /dev/null +++ b/tests/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` +} |