]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/many-seeds/scoped-thread-leak.rs
Auto merge of #105252 - bjorn3:codegen_less_pair_values, r=nagisa
[rust.git] / src / tools / miri / tests / many-seeds / scoped-thread-leak.rs
1 //! Regression test for https://github.com/rust-lang/miri/issues/2629
2 use std::thread;
3
4 fn main() {
5     thread::scope(|s| {
6         s.spawn(|| {});
7     });
8 }