Files
kotlin-fork/j2k/tests/testData/ast/class/oneStaticMethodOneNonStatic.ide.kt
T
Pavel V. Talanov 7f88de1dba Converter tests:
White spaces in member lists are preserved
2013-12-22 16:49:47 +04:00

11 lines
144 B
Kotlin

class S() {
fun sB(): Boolean {
return true
}
class object {
fun sI(): Int {
return 1
}
}
}