mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-20 00:00:08 +02:00
12 lines
244 B
Rust
12 lines
244 B
Rust
// https://github.com/tokio-rs/tokio/issues/3550
|
|
fn main() {
|
|
for _ in 0..1000 {
|
|
let rt = tokio::runtime::Builder::new_current_thread()
|
|
.enable_all()
|
|
.build()
|
|
.unwrap();
|
|
|
|
drop(rt);
|
|
}
|
|
}
|