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-25 17:14:20 -05:00
fn main() {
let x: typeof(92) = 92; //~ ERROR E0516
//~| reserved keyword
2016-08-25 17:14:20 -05:00
}