9 lines
116 B
Plaintext
Vendored
9 lines
116 B
Plaintext
Vendored
open class K
|
|
|
|
fun foo(n: Int) {
|
|
val x = K1(n)
|
|
}
|
|
|
|
class K1<caret>(private val n: Int) : K() {
|
|
fun bar() = n
|
|
} |