]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/underscore-suffix-for-float.rs
Auto merge of #57118 - Zoxc:query-stats, r=wesleywiser
[rust.git] / src / test / ui / parser / underscore-suffix-for-float.rs
1 // compile-flags: -Z parse-only
2
3 fn main() {
4     let a = 42._; //~ ERROR expected identifier, found reserved identifier `_`
5 }