rust/tests/ui/hello_world/main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
170 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
2016-05-11 14:28:52 -05:00
// Test that compiling hello world succeeds with no output of any kind.
fn main() {
println!("Hello, world!");
}