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