Test classes regenerated with new data

This commit is contained in:
Andrey Breslav
2012-06-25 17:47:13 +02:00
parent 6632c6abfc
commit dea6c452a0
5 changed files with 62 additions and 40 deletions
@@ -0,0 +1,5 @@
enum class Test(a : Int) {
A : Test(0)
B(x : Int) : Test(x)
C : Test(0) {}
}