9ec87c01ab
#KT-8812 Fixed
7 lines
99 B
Plaintext
Vendored
7 lines
99 B
Plaintext
Vendored
class A(val n: Int) {
|
|
fun getFoo(): Boolean = n > 1
|
|
}
|
|
|
|
fun test() {
|
|
val t = A(1).getFoo()
|
|
} |