summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-102209.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/issue-102209.stderr')
-rw-r--r--src/test/ui/borrowck/issue-102209.stderr22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/borrowck/issue-102209.stderr b/src/test/ui/borrowck/issue-102209.stderr
deleted file mode 100644
index 351de8217..000000000
--- a/src/test/ui/borrowck/issue-102209.stderr
+++ /dev/null
@@ -1,22 +0,0 @@
-error: lifetime may not live long enough
- --> $DIR/issue-102209.rs:10:29
- |
-LL | impl NfaBuilder<'_> {
- | -- lifetime `'2` appears in the `impl`'s self type
-LL | pub fn with<R, F: FnOnce(NfaBuilder<'_>) -> R>(f: F) -> R {
-LL | Brand::with(|brand| {
- | ----- has type `Brand<'1>`
-LL | f(Self { brand: brand.lt })
- | ^^^^^^^^ this usage requires that `'1` must outlive `'2`
-
-error: lifetime may not live long enough
- --> $DIR/issue-102209.rs:10:29
- |
-LL | impl NfaBuilder<'_> {
- | -- lifetime `'1` appears in the `impl`'s self type
-...
-LL | f(Self { brand: brand.lt })
- | ^^^^^^^^ this usage requires that `'1` must outlive `'static`
-
-error: aborting due to 2 previous errors
-