Files
kotlin-fork/compiler/testData/diagnostics/tests/evaluate/parentesized.txt
T
Dmitriy Novozhilov 3cffb33ab7 [FE] Drop ApproximateIntegerLiteralTypesInReceiverPosition language feature
This feature is not needed because it is unconditionally disabled for K1
  (because of not fully correct implementation) and unconditionally enabled
  in K2 (K2 does not support old behavior)

^KT-38895
2022-12-09 15:10:02 +00:00

14 lines
355 B
Plaintext
Vendored

package
public val b1: kotlin.Byte = 6
public val b2: kotlin.Short = 6
public val b3: kotlin.Int = 6
public val b4: kotlin.Long = 6.toLong()
public val i1: kotlin.Int = 6
public val i2: kotlin.Int = 6
public val p1: kotlin.Byte = 6.toByte()
public val p2: kotlin.Short = 6.toShort()
public val p3: kotlin.Int = 6
public val p4: kotlin.Long = 6.toLong()