summaryrefslogtreecommitdiff
path: root/examples/10-transient-0/src/data.hob
blob: d2ad016351a53912cd6c2adce2d7620b68f16a96 (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
struct StructWithBool {
    field a: Bool;
    field b: Bool;
}

struct StructWithInt32 {
    field a: Int32;
    field b: Int32;
}

struct StructWithInt64 {
    field a: Int64;
    field b: Int64;
}

struct OuterStruct {
    field inner: InnerStruct;
    field c: Int32;
}

struct InnerStruct {
    field a: Int32;
    field b: Int32;
}