3cffb33ab7
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
14 lines
355 B
Plaintext
Vendored
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()
|
|
|