Files
kotlin-fork/idea/testData/checker/Constants.kt
T
Evgeny Gerashchenko a3fdce8131 Highlighting "as Foo" for useless casts in gray.
#KT-6070 fixed
2014-12-08 17:30:47 +03:00

8 lines
157 B
Kotlin

fun test() {
1 : Byte
1 : Int
<error>1</error> : Double
1 <warning>as</warning> Byte
1 <warning>as Int</warning>
1 <warning>as</warning> Double
}