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

http://github.com/jruderman/rust · Rust · 10 lines · 3 code · 1 blank · 6 comment · 0 complexity · 62e31aa8203aa70a9cd15cfecb96261a MD5 · raw file

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