Sign in
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
ui
/
parser
/
unsized2.rs
blob: 21370b329a34425875e9004a0734d35ed84af139 [
file
]
// Test syntax checks for `type` keyword.
fn
f
<
X
>()
{}
pub
fn
main
()
{
f
<
type
>();
//~ ERROR expected expression, found keyword `type`
}