Files
kotlin-fork/compiler/testData/psi/IntegerLiteral.kt
T
2014-07-16 18:35:19 +04:00

20 lines
246 B
Kotlin
Vendored

val array = array<Any>(
1,
0x1,
0X1,
0b1,
0B1,
1L,
0x1L,
0X1L,
0b1L,
0B1L,
1l,
0x1l,
0X1l,
0b1l,
0B1l,
0
)
val a = 01