Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
joinDeclarationAndAssignment
/
usedLocal2.kt
blob: 60ebac176f2a4e3eecad241d7e872b0cdfed07e2 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
fun foo
()
{
// It's possible here to join with assignment but move the result after declaration of i
var
b
<caret>
:
Int
val i
=
0
b
=
i
}