about summary refs log tree commit diff
path: root/src/test/ui/async-await/issue-67765-async-diagnostic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/async-await/issue-67765-async-diagnostic.rs')
-rw-r--r--src/test/ui/async-await/issue-67765-async-diagnostic.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/async-await/issue-67765-async-diagnostic.rs b/src/test/ui/async-await/issue-67765-async-diagnostic.rs
deleted file mode 100644
index 5093916e73a..00000000000
--- a/src/test/ui/async-await/issue-67765-async-diagnostic.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// edition:2018
-//
-// Regression test for issue #67765
-// Tests that we point at the proper location when giving
-// a lifetime error.
-fn main() {}
-
-async fn func<'a>() -> Result<(), &'a str> {
-    let s = String::new();
-
-    let b = &s[..];
-
-    Err(b)?; //~ ERROR cannot return value referencing local variable `s`
-
-    Ok(())
-}