Files
kotlin-fork/compiler/testData/diagnostics/tests/evaluate/noOverflowWithZero.kt
T
2017-03-30 13:27:53 +03:00

12 lines
84 B
Kotlin
Vendored

val zero = 0
fun test() {
-0
-0L
-0.0
-(1 - 1)
-zero
+0
}