debbfa8397
Merge-request: KT-MR-8509 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
33 lines
1.2 KiB
Plaintext
Vendored
33 lines
1.2 KiB
Plaintext
Vendored
class Class constructor() {
|
|
val a: Int = 10
|
|
val arrayConst: Any = {1.toByte(), 2.toByte()}
|
|
val b: Int = 30
|
|
val booleanConst: Boolean = true
|
|
val byteConst: Byte = 10.toByte()
|
|
val charConst: Char = \u0041 ('A')
|
|
val doubleConst: Double = 3.0.toDouble()
|
|
val enumConst: Weapon? = Weapon.ROCK
|
|
val floatConst: Float = 2.0.toFloat()
|
|
val intConst: Int = 30
|
|
val longConst: Long = 40.toLong()
|
|
val shortConst: Short = 20.toShort()
|
|
val stringConst: String = "abcd"
|
|
}
|
|
enum class Weapon private constructor() : Enum<Weapon> {
|
|
enum entry ROCK
|
|
enum entry PAPER
|
|
enum entry SCISSORS
|
|
}
|
|
val a: Int = 10
|
|
val arrayConst: Any = {1.toByte(), 2.toByte()}
|
|
val b: Int = 30
|
|
val booleanConst: Boolean = true
|
|
val byteConst: Byte = 10.toByte()
|
|
val charConst: Char = \u0041 ('A')
|
|
val doubleConst: Double = 3.0.toDouble()
|
|
val enumConst: Weapon? = Weapon.ROCK
|
|
val floatConst: Float = 2.0.toFloat()
|
|
val intConst: Int = 30
|
|
val longConst: Long = 40.toLong()
|
|
val shortConst: Short = 20.toShort()
|
|
val stringConst: String = "abcd" |