33e34c759d
#KT-2190 fixed
17 lines
268 B
Kotlin
Vendored
17 lines
268 B
Kotlin
Vendored
import javax.swing.SwingUtilities
|
|
|
|
fun f(a: Int): Int {
|
|
if (a < 5) {
|
|
SwingUtilities.invokeLater(fun (): Unit {
|
|
return
|
|
})
|
|
<caret>return 1
|
|
}
|
|
else {
|
|
return 2
|
|
}
|
|
}
|
|
|
|
//HIGHLIGHTED: return 1
|
|
//HIGHLIGHTED: return 2
|