Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
smartCasts
/
implicitExtensionReceiver.kt
blob: d2cef58995b93296bed4122e6bfc173c73608c82 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
class
A
{
fun foo
()
=
"OK"
}
fun A
?.
bar
()
=
if
(
this
!=
null
)
foo
()
else
"FAIL"
fun box
()
=
A
().
bar
()