blob: 36b7e2cb89e502ffad27a6539e8272fbe60d3b6f [file] [log] [blame]
class A(val n: Int) {
fun getFoo(): Boolean = n > 1
}
fun test() {
val t = A(1).getFoo()
}