Files
kotlin-fork/j2k/tests/testData/ast/issues/kt-792-mixed.ide.kt
T
Pavel V. Talanov 21bc2887d2 Converter:
Omit Unit return type
Refactor handling of Unit type: extract separate object UnitType
2013-12-22 15:53:14 +04:00

7 lines
80 B
Kotlin

package demo
open class Test(i : Int) {
open fun test() {
val i = 10
Test(i)
}
}