summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/double_must_use.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/double_must_use.rs')
-rw-r--r--src/tools/clippy/tests/ui/double_must_use.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/double_must_use.rs b/src/tools/clippy/tests/ui/double_must_use.rs
index 05e087b08..26a387b3c 100644
--- a/src/tools/clippy/tests/ui/double_must_use.rs
+++ b/src/tools/clippy/tests/ui/double_must_use.rs
@@ -21,6 +21,17 @@ pub fn must_use_with_note() -> Result<(), ()> {
unimplemented!();
}
+// vvvv Should not lint (#10486)
+#[must_use]
+async fn async_must_use() -> usize {
+ unimplemented!();
+}
+
+#[must_use]
+async fn async_must_use_result() -> Result<(), ()> {
+ Ok(())
+}
+
fn main() {
must_use_result();
must_use_tuple();