summaryrefslogtreecommitdiffstats
path: root/tests/ui/print_type_sizes/zero-sized-fields.rs
blob: 09415824d5df00835f9cda3dabbd4f5b9c4bc467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// compile-flags: -Z print-type-sizes --crate-type=lib
// build-pass
// ignore-pass

// At one point, zero-sized fields such as those in this file were causing
// incorrect output from `-Z print-type-sizes`.

struct S1 {
    x: u32,
    y: u32,
    tag: (),
}

struct Void();
struct Empty {}

struct S5<TagW, TagZ> {
    tagw: TagW,
    w: u32,
    unit: (),
    x: u32,
    void: Void,
    y: u32,
    empty: Empty,
    z: u32,
    tagz: TagZ,
}

pub fn test() {
    let _s1: S1 = S1 { x: 0, y: 0, tag: () };

    let _s5: S5<(), Empty> = S5 {
        tagw: (),
        w: 1,
        unit: (),
        x: 2,
        void: Void(),
        y: 3,
        empty: Empty {},
        z: 4,
        tagz: Empty {},
    };
}