Files
rust/tests/ui/warnings/hello-world.rs

8 lines
134 B
Rust
Raw Normal View History

//@ build-pass
2016-05-11 12:28:52 -07:00
// Test that compiling hello world succeeds with no output of any kind.
fn main() {
println!("Hello, world!");
}