about summary refs log tree commit diff
path: root/src/test/incremental/async-lifetimes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/incremental/async-lifetimes.rs')
-rw-r--r--src/test/incremental/async-lifetimes.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/incremental/async-lifetimes.rs b/src/test/incremental/async-lifetimes.rs
deleted file mode 100644
index 90a0b93b99a..00000000000
--- a/src/test/incremental/async-lifetimes.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// revisions: rpass1 rpass2
-// edition:2021
-
-// See https://github.com/rust-lang/rust/issues/98890
-
-#![allow(unused)]
-
-struct Foo;
-
-impl Foo {
-    async fn f(&self, _: &&()) -> &() {
-        &()
-    }
-}
-
-#[cfg(rpass2)]
-enum Bar {}
-
-fn main() {}