summaryrefslogtreecommitdiff
path: root/tests/enums/bug673879.vala
blob: db32ff6202d51151e68f15a974102003c48c1a8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
enum Test
{
    TEST = 10
}

void main()
{
    Test? test = null;

    test = Test.TEST;
    assert ((!)test == 10);
}