rust/src/test/compile-fail/unbalanced-comment.rs

12 lines
161 B
Rust
Raw Normal View History

2011-07-27 14:48:34 +02:00
// -*- rust -*-
// error-pattern: unterminated block comment
/*
* This is an un-balanced /* multi-line comment.
*/
fn main() {
#debug("hello, world.");
2011-07-27 14:48:34 +02:00
}