Sign in
rust
/
rust
/
2d3dfece0346f805c6d4fa86c2e8a20ca3eef6ca
/
.
/
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`
}