Some more tests.

This commit is contained in:
Dmitry Petrov
2016-09-02 14:24:24 +03:00
committed by Dmitry Petrov
parent 42988383e0
commit f2e778d2d0
7 changed files with 125 additions and 0 deletions
@@ -0,0 +1,9 @@
abstract class Base
object Test : Base() {
val x = 1
val y: Int
init {
y = x
}
}