mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
11 lines
264 B
Kotlin
Vendored
11 lines
264 B
Kotlin
Vendored
// "Create function 'synchronized'" "false"
|
|
// ACTION: Convert expression to 'Int'
|
|
// ERROR: Type mismatch: inferred type is Float but Int was expected
|
|
// WITH_RUNTIME
|
|
|
|
fun test() {
|
|
var value = 0
|
|
synchronized(value) {
|
|
value = <caret>10 / 1f
|
|
}
|
|
} |