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 Permalink Normal View History

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