rust/src/test/compile-fail/unbalanced-comment.rs
2011-07-27 15:54:33 +02:00

12 lines
157 B
Rust

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