534a773816
#KT-15056 Fixed
9 lines
107 B
Plaintext
9 lines
107 B
Plaintext
open class K
|
|
|
|
fun foo(n: Int) {
|
|
val x = O(n)
|
|
}
|
|
|
|
class O(private val n: Int) : K() {
|
|
fun bar() = n
|
|
} |