aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/blob_complex.sy
blob: b139a3a2577175372208fb9a13ca9136a8b8080b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
start :: fn {

    a := A()
    b := B()
    c := C()
    b2 := B()

    a
    b
    c
    b2

    blob A {
        c: C
    }
    blob C { }
    blob B { }

}