Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
}
}