aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/verifier/expr_member.bad
blob: 8ac539542615a86dce5557288b24d38341cfd8b3 (plain)
1
2
3
4
5
6
7
8

() f()
{
    var (int x, int y) a;

    a.x = bool:false;   // ERROR
    bool b = a.y;       // ERROR
}