Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
notNullAssertion.kt
blob: 37e3292871196aff79651ff909c1a7a445f6ccb9 [
file
] [
log
] [
blame
]
fun foo
():
Int
{
val s
:
String
?
=
""
return
if
(
true
)
{
<selection>
s
!!.
length
</
selection
>
}
else
{
s
!!.
length
}
}