Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
notNullAssertion.kt.after
blob: 624798a3c5dc26b274cfd67754c125b10b398154 [
file
] [
log
] [
blame
]
fun foo
():
Int
{
val s
:
String
?
=
""
val length
=
s
!!.
length
return
if
(
true
)
{
length
}
else
{
length
}
}