|
8 | 8 | // option. This file may not be copied, modified, or distributed
|
9 | 9 | // except according to those terms.
|
10 | 10 |
|
| 11 | +// ignore-tidy-linelength |
11 | 12 | // ignore-android: FIXME(#10381)
|
12 | 13 |
|
13 | 14 | #![feature(managed_boxes)]
|
|
20 | 21 |
|
21 | 22 | // gdb-command:print stack_unique.value
|
22 | 23 | // gdb-check:$1 = 0
|
23 |
| -// gdb-command:print stack_unique.next->value |
| 24 | +// gdb-command:print stack_unique.next.RUST$ENCODED$ENUM$0$Empty.val->value |
24 | 25 | // gdb-check:$2 = 1
|
25 | 26 |
|
26 | 27 | // gdb-command:print unique_unique->value
|
27 | 28 | // gdb-check:$3 = 2
|
28 |
| -// gdb-command:print unique_unique->next->value |
| 29 | +// gdb-command:print unique_unique->next.RUST$ENCODED$ENUM$0$Empty.val->value |
29 | 30 | // gdb-check:$4 = 3
|
30 | 31 |
|
31 | 32 | // gdb-command:print box_unique->val.value
|
32 | 33 | // gdb-check:$5 = 4
|
33 |
| -// gdb-command:print box_unique->val.next->value |
| 34 | +// gdb-command:print box_unique->val.next.RUST$ENCODED$ENUM$0$Empty.val->value |
34 | 35 | // gdb-check:$6 = 5
|
35 | 36 |
|
36 | 37 | // gdb-command:print vec_unique[0].value
|
37 | 38 | // gdb-check:$7 = 6.5
|
38 |
| -// gdb-command:print vec_unique[0].next->value |
| 39 | +// gdb-command:print vec_unique[0].next.RUST$ENCODED$ENUM$0$Empty.val->value |
39 | 40 | // gdb-check:$8 = 7.5
|
40 | 41 |
|
41 | 42 | // gdb-command:print borrowed_unique->value
|
42 | 43 | // gdb-check:$9 = 8.5
|
43 |
| -// gdb-command:print borrowed_unique->next->value |
| 44 | +// gdb-command:print borrowed_unique->next.RUST$ENCODED$ENUM$0$Empty.val->value |
44 | 45 | // gdb-check:$10 = 9.5
|
45 | 46 |
|
46 | 47 | // MANAGED
|
47 | 48 | // gdb-command:print stack_managed.value
|
48 | 49 | // gdb-check:$11 = 10
|
49 |
| -// gdb-command:print stack_managed.next.val->value |
| 50 | +// gdb-command:print stack_managed.next.RUST$ENCODED$ENUM$0$Empty.val->val.value |
50 | 51 | // gdb-check:$12 = 11
|
51 | 52 |
|
52 | 53 | // gdb-command:print unique_managed->value
|
53 | 54 | // gdb-check:$13 = 12
|
54 |
| -// gdb-command:print unique_managed->next.val->value |
| 55 | +// gdb-command:print unique_managed->next.RUST$ENCODED$ENUM$0$Empty.val->val.value |
55 | 56 | // gdb-check:$14 = 13
|
56 | 57 |
|
57 | 58 | // gdb-command:print box_managed.val->value
|
58 | 59 | // gdb-check:$15 = 14
|
59 |
| -// gdb-command:print box_managed->val->next.val->value |
| 60 | +// gdb-command:print box_managed->val->next.RUST$ENCODED$ENUM$0$Empty.val->val.value |
60 | 61 | // gdb-check:$16 = 15
|
61 | 62 |
|
62 | 63 | // gdb-command:print vec_managed[0].value
|
63 | 64 | // gdb-check:$17 = 16.5
|
64 |
| -// gdb-command:print vec_managed[0].next.val->value |
| 65 | +// gdb-command:print vec_managed[0].next.RUST$ENCODED$ENUM$0$Empty.val->val.value |
65 | 66 | // gdb-check:$18 = 17.5
|
66 | 67 |
|
67 | 68 | // gdb-command:print borrowed_managed->value
|
68 | 69 | // gdb-check:$19 = 18.5
|
69 |
| -// gdb-command:print borrowed_managed->next.val->value |
| 70 | +// gdb-command:print borrowed_managed->next.RUST$ENCODED$ENUM$0$Empty.val->val.value |
70 | 71 | // gdb-check:$20 = 19.5
|
71 | 72 |
|
72 | 73 | // LONG CYCLE
|
|
97 | 98 | // gdb-command:print (*****long_cycle_w_anonymous_types).value
|
98 | 99 | // gdb-check:$31 = 30
|
99 | 100 |
|
100 |
| -// gdb-command:print (*****((*****long_cycle_w_anonymous_types).next)).value |
| 101 | +// gdb-command:print (*****((*****long_cycle_w_anonymous_types).next.RUST$ENCODED$ENUM$0$Empty.val)).value |
101 | 102 | // gdb-check:$32 = 31
|
102 | 103 |
|
103 | 104 | // gdb-command:continue
|
|
0 commit comments