StdoutLock not released on drop.
Open
bug
- Dominant language
- Rust
- Stars
- 4.1k
- Forks
- 339
- PR merge metrics
- No merged PRs in 30d
Description
This causes a deadlock with 1.4.0 :
```
async fn f() {
{
let _ = async_std::io::stdout().lock().await;
}
{
let _ = async_std::io::stdout().lock().await;
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.