summary refs log tree commit diff
path: root/src/test/ui/hello_world/main.rs
blob: f790af64b4df05ba45d64555dd5814b127be45c7 (plain)
1
2
3
4
5
6
7
// compile-pass

// Test that compiling hello world succeeds with no output of any kind.

fn main() {
    println!("Hello, world!");
}