rust/tests/ui/error-codes/E0516.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
108 B
Rust
Raw Normal View History

2016-08-26 06:14:20 +08:00
fn main() {
let x: typeof(92) = 92; //~ ERROR E0516
//~| reserved keyword
2016-08-26 06:14:20 +08:00
}