rustc/tests/ui/parser/unsized2.rs
2023-07-27 22:48:29 +08:00

8 lines
142 B
Rust

// Test syntax checks for `type` keyword.
fn f<X>() {}
pub fn main() {
f<type>(); //~ ERROR expected expression, found keyword `type`
}