rust/src/test/ui/parser/issues/issue-3036.fixed
Badel2 8c8914ecab Move parser tests to parser/issues subdirectory
Because the parser directory has already reached the 1000 file limit.
2021-11-20 14:52:21 +01:00

7 lines
136 B
Rust

// run-rustfix
// Testing that semicolon tokens are printed correctly in errors
fn main() {
let _x = 3; //~ ERROR: expected `;`
}