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

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

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