e5e2811bc6
Changed a few error patterns to match rustc's errors where it seemed reasonable.
12 lines
157 B
Rust
12 lines
157 B
Rust
// -*- rust -*-
|
|
|
|
// error-pattern: unterminated block comment
|
|
|
|
/*
|
|
* This is an un-balanced /* multi-line comment.
|
|
*/
|
|
|
|
fn main() {
|
|
log "hello, world.";
|
|
}
|