rust/src/test/compile-fail/unbalanced-comment.rs
2012-07-30 18:38:15 -07:00

12 lines
161 B
Rust

// -*- rust -*-
// error-pattern: unterminated block comment
/*
* This is an un-balanced /* multi-line comment.
*/
fn main() {
debug!{"hello, world."};
}