Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
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"
}