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