rust/tests/ui/parallel-rustc/hello_world.rs

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

7 lines
90 B
Rust
Raw Normal View History

2024-02-07 07:26:57 +00:00
//@ compile-flags: -Z threads=8
//@ run-pass
fn main() {
println!("Hello world!");
}