summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-102209.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/ui/borrowck/issue-102209.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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
-