blob: 5fa8e51104d6657df83efb38a7f29b5cc9a727b0 [file]
// IGNORE_BACKEND_FIR: JVM_IR
class X {
fun g(x: () -> Boolean = { super.equals(this) }) = x()
}
fun box(): String {
return if (X().g()) "OK" else "Fail: false"
}