rust/src/test/compile-fail/unbalanced-comment.rs
2012-08-23 11:14:14 -07:00

11 lines
161 B
Rust

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