rust/src/test/compile-fail/multiline-comment-line-tracking.rs

11 lines
139 B
Rust

// -*- rust -*-
// error-pattern:9:2:E
/* 1
* 2
* 3
*/
fn main() {
%; // parse error on line 9, but is reported on line 6 instead.
}