mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
8 lines
121 B
Rust
8 lines
121 B
Rust
// run-pass
|
|
// ignore-emscripten no threads support
|
|
|
|
pub fn main() {
|
|
let f = || || 0;
|
|
std::thread::spawn(f());
|
|
}
|