rust/tests/fail/rustc-error.rs

5 lines
163 B
Rust
Raw Normal View History

2020-04-25 04:12:50 -05:00
// Make sure we exit with non-0 status code when the program fails to build.
fn main() {
println("Hello, world!"); //~ ERROR: expected function, found macro
2020-04-25 04:12:50 -05:00
}