blob: 1d6da5a04cad7f5bf650a4b562b61d78a26c6f66 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
//KT-1066 false 'Variable cannot be initialized before declaration'
package kt1066
fun randomDigit() = 0.toChar()
fun foo(excluded: Set<Char>) {
var digit : Char
do {
digit = randomDigit()
// ^^^^^ here!
} while (excluded.contains(digit))
}
fun test() {
var sum : Int = 0
var first : Int = 1
var second : Int = 2
var temp : Int //= 0 // variable 'temp' initializer is redundant
while (true)
{
if (second > 4000000)
break
if (second % 2 == 0)
sum += second
temp = second
second = first + second
first = temp
}
}
/* GENERATED_FIR_TAGS: additiveExpression, assignment, break, comparisonExpression, doWhileLoop, equalityExpression,
functionDeclaration, ifExpression, integerLiteral, localProperty, multiplicativeExpression, propertyDeclaration,
whileLoop */