summary refs log tree commit diff
path: root/src/test/compile-fail/unbalanced-comment.rs
blob: 52b49723691cc2a73b6d0c754de0b3f8abd55e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
// -*- rust -*-

// error-pattern: unterminated block comment

/*
 * This is an un-balanced /* multi-line comment.
 */

fn main() {
  #debug("hello, world.");
}