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