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

5 lines
101 B
Kotlin
Vendored

// "Replace cast with call to 'toShort()'" "true"
fun foo(c: Char) {
val a = c as<caret> Short
}