rust/tests/ui/parser/multiline-comment-line-tracking.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
141 B
Rust
Raw Normal View History

// Parse error on line X, but is reported on line Y instead.
2011-07-27 12:48:34 +00:00
/* 1
* 2
* 3
*/
fn main() {
%; //~ ERROR expected expression, found `%`
2011-07-27 12:48:34 +00:00
}