rust/tests/ui/lint/unused/auxiliary/must-use-foreign.rs
2023-05-12 02:08:43 +00:00

13 lines
192 B
Rust

// edition:2021
use std::future::Future;
pub struct Manager;
impl Manager {
#[must_use]
pub async fn new() -> (Self, impl Future<Output = ()>) {
(Manager, async {})
}
}