summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/ty-outlives/ty-param-closure-outlives-from-where-clause.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/nll/ty-outlives/ty-param-closure-outlives-from-where-clause.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/nll/ty-outlives/ty-param-closure-outlives-from-where-clause.stderr')
-rw-r--r--src/test/ui/nll/ty-outlives/ty-param-closure-outlives-from-where-clause.stderr122
1 files changed, 0 insertions, 122 deletions
diff --git a/src/test/ui/nll/ty-outlives/ty-param-closure-outlives-from-where-clause.stderr b/src/test/ui/nll/ty-outlives/ty-param-closure-outlives-from-where-clause.stderr
deleted file mode 100644
index 4c97db58c..000000000
--- a/src/test/ui/nll/ty-outlives/ty-param-closure-outlives-from-where-clause.stderr
+++ /dev/null
@@ -1,122 +0,0 @@
-note: external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:27:26
- |
-LL | with_signature(a, b, |x, y| {
- | ^^^^^^
- |
- = note: defining type: no_region::<T>::{closure#0} with closure substs [
- i32,
- extern "rust-call" fn((std::cell::Cell<&'_#1r ()>, T)),
- (),
- ]
- = note: late-bound region is '_#2r
- = note: number of external vids: 3
- = note: where T: '_#1r
-
-note: no external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:26:1
- |
-LL | fn no_region<'a, T>(a: Cell<&'a ()>, b: T) {
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- |
- = note: defining type: no_region::<T>
-
-error[E0309]: the parameter type `T` may not live long enough
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:32:9
- |
-LL | require(&x, &y)
- | ^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
- |
-help: consider adding an explicit lifetime bound...
- |
-LL | fn no_region<'a, T: 'a>(a: Cell<&'a ()>, b: T) {
- | ++++
-
-note: external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:42:26
- |
-LL | with_signature(a, b, |x, y| {
- | ^^^^^^
- |
- = note: defining type: correct_region::<'_#1r, T>::{closure#0} with closure substs [
- i32,
- extern "rust-call" fn((std::cell::Cell<&'_#2r ()>, T)),
- (),
- ]
- = note: number of external vids: 3
- = note: where T: '_#2r
-
-note: no external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:38:1
- |
-LL | / fn correct_region<'a, T>(a: Cell<&'a ()>, b: T)
-LL | | where
-LL | | T: 'a,
- | |__________^
- |
- = note: defining type: correct_region::<'_#1r, T>
-
-note: external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:63:26
- |
-LL | with_signature(a, b, |x, y| {
- | ^^^^^^
- |
- = note: defining type: wrong_region::<'_#1r, T>::{closure#0} with closure substs [
- i32,
- extern "rust-call" fn((std::cell::Cell<&'_#2r ()>, T)),
- (),
- ]
- = note: late-bound region is '_#3r
- = note: number of external vids: 4
- = note: where T: '_#2r
-
-note: no external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:59:1
- |
-LL | / fn wrong_region<'a, 'b, T>(a: Cell<&'a ()>, b: T)
-LL | | where
-LL | | T: 'b,
- | |__________^
- |
- = note: defining type: wrong_region::<'_#1r, T>
-
-error[E0309]: the parameter type `T` may not live long enough
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:65:9
- |
-LL | require(&x, &y)
- | ^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
- |
-help: consider adding an explicit lifetime bound...
- |
-LL | T: 'b + 'a,
- | ++++
-
-note: external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:76:26
- |
-LL | with_signature(a, b, |x, y| {
- | ^^^^^^
- |
- = note: defining type: outlives_region::<'_#1r, '_#2r, T>::{closure#0} with closure substs [
- i32,
- extern "rust-call" fn((std::cell::Cell<&'_#3r ()>, T)),
- (),
- ]
- = note: number of external vids: 4
- = note: where T: '_#3r
-
-note: no external requirements
- --> $DIR/ty-param-closure-outlives-from-where-clause.rs:71:1
- |
-LL | / fn outlives_region<'a, 'b, T>(a: Cell<&'a ()>, b: T)
-LL | | where
-LL | | T: 'b,
-LL | | 'b: 'a,
- | |___________^
- |
- = note: defining type: outlives_region::<'_#1r, '_#2r, T>
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0309`.