summary refs log tree commit diff
path: root/src/test/compile-fail/multiline-comment-line-tracking.rs
blob: ec9a168e99192cd0f58c2e3fbd3e431bd28c10d9 (plain)
1
2
3
4
5
6
7
8
9
10
// -*- rust -*-
// error-pattern:9:3

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