aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/multiline-comment-line-tracking.rs
blob: 3f555bfc87bdac90ff294c78c2f4d7a120dd0289 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// -*- rust -*-
// error-pattern:9:2:E

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