Parse longs with 'L' suffix. Report error if 'l' used.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
val array = array<Any>(
|
||||
1,
|
||||
0x1,
|
||||
0X1,
|
||||
0b1,
|
||||
0B1,
|
||||
1L,
|
||||
0x1L,
|
||||
0X1L,
|
||||
0b1L,
|
||||
0B1L,
|
||||
1l,
|
||||
0x1l,
|
||||
0X1l,
|
||||
0b1l,
|
||||
0B1l,
|
||||
)
|
||||
Reference in New Issue
Block a user