view test/enum2.d @ 198:17dc52256c58 trunk

[svn r214] test results for [210]
author ChristianK
date Mon, 12 May 2008 20:28:44 +0200
parents 0c77619e803b
children
line wrap: on
line source

module enum2;

void main()
{
    enum E {
        A,B
    }
    E e = E.B;
    assert(e == E.B);
}