Files
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.

10 lines
174 B
Rust
Raw Permalink Normal View History

// Test for the basic function of parallel front end
//
2024-02-07 15:26:57 +08:00
//@ compile-flags: -Z threads=8
//@ run-pass
//@ compare-output-by-lines
2024-02-07 15:26:57 +08:00
fn main() {
println!("Hello world!");
}