mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 07:58:17 +00:00
8 lines
142 B
Rust
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`
|
|
}
|