Files
kotlin/idea/testData/quickfix/primitiveCastToConversion/boolean.kt
2017-01-09 16:36:56 +03:00

6 lines
129 B
Kotlin
Vendored

// "Replace cast with call to 'toInt()'" "false"
// WARNING: Cast can never succeed
fun foo() {
val a = true as<caret> Int
}