Files
kotlin-fork/js/js.translator/testData/simple/cases/classInstantiation.kt
T
2014-03-11 20:04:00 +04:00

9 lines
91 B
Kotlin
Vendored

package foo
class Test() {
}
fun box(): Boolean {
var test = Test()
return true
}