proper compilation of enums

This commit is contained in:
Alex Tkachman
2012-08-13 22:37:27 +03:00
parent e5820722ec
commit 5947759684
33 changed files with 839 additions and 134 deletions
@@ -8,6 +8,8 @@ trait T {}
class Br(t : T) : T by t {}
open enum class E() {}
open enum class EN() {
A
}
class Test2(e : E) : <!DELEGATION_NOT_TO_TRAIT!>E<!> by e {}
class Test2(e : EN) : <!DELEGATION_NOT_TO_TRAIT!>EN<!> by e {}