rust/tests/ui/entry-point/hello-world.rs
reddevilmidzy ab9d0e0ab6 moved tests
updated `tests/ui/README.md`and `src/tools/tidy/src/issues.txt`
2025-12-02 11:13:37 +09:00

7 lines
134 B
Rust

//@ build-pass
// Test that compiling hello world succeeds with no output of any kind.
fn main() {
println!("Hello, world!");
}