Add regression test for KT-2673

#KT-2673 Obsolete
This commit is contained in:
Alexander Udalov
2013-01-18 21:25:56 +04:00
parent ffd62eb80e
commit 4305a009df
2 changed files with 12 additions and 0 deletions
@@ -0,0 +1,8 @@
fun box(): String {
enum class K {
O
K
}
return K.O.toString() + K.K.toString()
}
@@ -171,4 +171,8 @@ public class EnumGenTest extends CodegenTestCase {
public void testAbstractMethodInEnum() {
blackBoxFile("enum/abstractMethodInEnum.kt");
}
public void testKt2673() {
blackBoxFile("regressions/kt2673.kt");
}
}