summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/late-bound-vars/in_closure.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
commitc23a457e72abe608715ac76f076f47dc42af07a5 (patch)
tree2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /tests/ui/const-generics/late-bound-vars/in_closure.stderr
parentReleasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz
rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/const-generics/late-bound-vars/in_closure.stderr')
-rw-r--r--tests/ui/const-generics/late-bound-vars/in_closure.stderr30
1 files changed, 20 insertions, 10 deletions
diff --git a/tests/ui/const-generics/late-bound-vars/in_closure.stderr b/tests/ui/const-generics/late-bound-vars/in_closure.stderr
index ac406bf2b..e15496454 100644
--- a/tests/ui/const-generics/late-bound-vars/in_closure.stderr
+++ b/tests/ui/const-generics/late-bound-vars/in_closure.stderr
@@ -1,10 +1,20 @@
-#0 [mir_borrowck] borrow-checking `test::{closure#0}::{constant#1}`
-#1 [mir_drops_elaborated_and_const_checked] elaborating drops for `test::{closure#0}::{constant#1}`
-#2 [mir_for_ctfe] caching mir of `test::{closure#0}::{constant#1}` for CTFE
-#3 [eval_to_allocation_raw] const-evaluating + checking `test::{closure#0}::{constant#1}`
-#4 [eval_to_allocation_raw] const-evaluating + checking `test::{closure#0}::{constant#1}`
-#5 [eval_to_valtree] evaluating type-level constant
-#6 [typeck] type-checking `test`
-#7 [analysis] running analysis passes on this crate
-end of query stack
-error: aborting due to previous error \ No newline at end of file
+error: cannot capture late-bound lifetime in constant
+ --> $DIR/in_closure.rs:16:29
+ |
+LL | fn test<'a>() {
+ | -- lifetime defined here
+LL | let _ = || {
+LL | let _: [u8; inner::<'a>()];
+ | ^^
+
+error: cannot capture late-bound lifetime in constant
+ --> $DIR/in_closure.rs:17:29
+ |
+LL | fn test<'a>() {
+ | -- lifetime defined here
+...
+LL | let _ = [0; inner::<'a>()];
+ | ^^
+
+error: aborting due to 2 previous errors
+