Release 0.41.92
[vala-gnome.git] / tests / enums / bug763831.vala
blob519fdf33f6214826b858123ec62010c689142ce5
1 [Flags]
2 enum Foo {
3 TEST = 1 << 0;
6 enum Bar {
7 TEST = 1 << 0;
10 void main() {
11 Foo.TEST.to_string ();
12 Bar.TEST.to_string ();