Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
d3d24195a53216cd2fe441577c4a522bdc276c5f
/
.
/
plugins
/
power-assert
/
testData
/
codegen
/
nullsafe
/
thisSafeCall.kt
blob: fe65941200e0aebc073edc70bd5fa9b1e747a02a [
file
]
fun box
():
String
=
runAll
(
"\"abc\".test1"
to
{
"abc"
.
test1
()
},
"null.test1"
to
{
null
.
test1
()
},
)
fun
String
?.
test1
()
{
assert
(
this
?.
length
==
5
)
}