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

12 lines
157 B
Rust
Raw Normal View History

2010-07-08 17:01:25 +08:00
// -*- rust -*-
// error-pattern: unterminated block comment
2010-07-08 17:01:25 +08:00
/*
* This is an un-balanced /* multi-line comment.
*/
fn main() {
log "hello, world.";
}