Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionProperties
/
extensionPropertyDifferentReceiver.kt
blob: af1460214361de8c441d8ccab827cb3e5be08e71 [
file
]
val
Unit
.
foo
:
Boolean
get
()
=
true
val
Nothing
.
bar
:
Boolean
get
()
=
true
class
A
val A
?.
baz
:
Boolean
get
()
=
true
fun box
():
String
{
return
if
({
}().
foo
&&
(
null
?.
bar
==
null
)
&&
null
.
baz
)
"OK"
else
"FAIL"
}