rust/src/test/ui/parser/underscore-suffix-for-float.rs

6 lines
126 B
Rust
Raw Normal View History

// compile-flags: -Z parse-only
2017-05-12 08:00:06 -05:00
fn main() {
2018-03-08 05:27:23 -06:00
let a = 42._; //~ ERROR expected identifier, found reserved identifier `_`
2017-05-12 08:00:06 -05:00
}