]> git.proxmox.com Git - rustc.git/blob - src/test/ui/associated-consts/issue-24949-assoc-const-static-recursion-impl.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / associated-consts / issue-24949-assoc-const-static-recursion-impl.stderr
1 error[E0391]: cycle detected when elaborating drops for `<impl at $DIR/issue-24949-assoc-const-static-recursion-impl.rs:11:1: 13:2>::BAR`
2 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:12:5
3 |
4 LL | const BAR: u32 = IMPL_REF_BAR;
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = note: ...which requires normalizing `IMPL_REF_BAR`...
8 note: ...which requires simplifying constant for the type system `IMPL_REF_BAR`...
9 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:7:1
10 |
11 LL | const IMPL_REF_BAR: u32 = GlobalImplRef::BAR;
12 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13 note: ...which requires simplifying constant for the type system `IMPL_REF_BAR`...
14 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:7:1
15 |
16 LL | const IMPL_REF_BAR: u32 = GlobalImplRef::BAR;
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 note: ...which requires const-evaluating + checking `IMPL_REF_BAR`...
19 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:7:1
20 |
21 LL | const IMPL_REF_BAR: u32 = GlobalImplRef::BAR;
22 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23 = note: ...which requires normalizing `<impl at $DIR/issue-24949-assoc-const-static-recursion-impl.rs:11:1: 13:2>::BAR`...
24 note: ...which requires simplifying constant for the type system `<impl at $DIR/issue-24949-assoc-const-static-recursion-impl.rs:11:1: 13:2>::BAR`...
25 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:12:5
26 |
27 LL | const BAR: u32 = IMPL_REF_BAR;
28 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29 note: ...which requires simplifying constant for the type system `<impl at $DIR/issue-24949-assoc-const-static-recursion-impl.rs:11:1: 13:2>::BAR`...
30 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:12:5
31 |
32 LL | const BAR: u32 = IMPL_REF_BAR;
33 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
34 note: ...which requires const-evaluating + checking `<impl at $DIR/issue-24949-assoc-const-static-recursion-impl.rs:11:1: 13:2>::BAR`...
35 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:12:5
36 |
37 LL | const BAR: u32 = IMPL_REF_BAR;
38 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39 note: ...which requires caching mir of `<impl at $DIR/issue-24949-assoc-const-static-recursion-impl.rs:11:1: 13:2>::BAR` for CTFE...
40 --> $DIR/issue-24949-assoc-const-static-recursion-impl.rs:12:5
41 |
42 LL | const BAR: u32 = IMPL_REF_BAR;
43 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44 = note: ...which again requires elaborating drops for `<impl at $DIR/issue-24949-assoc-const-static-recursion-impl.rs:11:1: 13:2>::BAR`, completing the cycle
45 = note: cycle used when running analysis passes on this crate
46
47 error: aborting due to previous error
48
49 For more information about this error, try `rustc --explain E0391`.