Allow any case for u suffix

#KT-24663 In Progress
This commit is contained in:
Mikhail Zarechenskiy
2018-06-26 14:53:29 +03:00
parent 984e37c7f1
commit 7c44992016
7 changed files with 363 additions and 256 deletions
@@ -6,3 +6,6 @@ const val u1: UByte = 2u
const val u2: UShort = 3u
const val u3: UInt = 3u
const val u4: ULong = 4u
const val u5 = 1U
const val u6: UByte = 0xFFU
@@ -5,3 +5,5 @@ public const val u1: kotlin.UByte = 2.toUByte()
public const val u2: kotlin.UShort = 3.toUShort()
public const val u3: kotlin.UInt = 3.toUInt()
public const val u4: kotlin.ULong = 4.toULong()
public const val u5: kotlin.UInt = 1.toUInt()
public const val u6: kotlin.UByte = -1.toUByte()