blob: 8da98e95a979d5e1de3891c0801928785923e08c [file]
class C {
fun Any?.f() {
if (this == null) return
m()
m()
m()
m()
m()
}
fun Any.m() {}
}