mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 19:43:43 +00:00
8 lines
123 B
Rust
8 lines
123 B
Rust
//@ run-pass
|
|
//@ ignore-emscripten no threads support
|
|
|
|
pub fn main() {
|
|
let f = || || 0;
|
|
std::thread::spawn(f());
|
|
}
|