07767f88e2
^KT-62340
68 lines
1.4 KiB
Plaintext
Vendored
68 lines
1.4 KiB
Plaintext
Vendored
library {
|
|
// module name: <enum.kt>
|
|
|
|
library fragment {
|
|
// package name: test
|
|
|
|
// class name: test/C1
|
|
// class name: test/C2
|
|
// class name: test/EnumArray
|
|
// class name: test/JustEnum
|
|
// class name: test/Weapon
|
|
// class name: test/Weapon.PAPER
|
|
// class name: test/Weapon.ROCK
|
|
// class name: test/Weapon.SCISSORS
|
|
|
|
@test/JustEnum(weapon = test/Weapon.SCISSORS)
|
|
@test/EnumArray(enumArray = [])
|
|
public final class test/C1 : kotlin/Any {
|
|
|
|
public constructor()
|
|
}
|
|
|
|
@test/EnumArray(enumArray = [test/Weapon.PAPER, test/Weapon.ROCK])
|
|
public final class test/C2 : kotlin/Any {
|
|
|
|
public constructor()
|
|
}
|
|
|
|
public final annotation class test/EnumArray : kotlin/Annotation {
|
|
|
|
public constructor(enumArray: kotlin/Array<test/Weapon>)
|
|
|
|
public final val enumArray: kotlin/Array<test/Weapon>
|
|
public final get
|
|
}
|
|
|
|
public final annotation class test/JustEnum : kotlin/Annotation {
|
|
|
|
public constructor(weapon: test/Weapon)
|
|
|
|
public final val weapon: test/Weapon
|
|
public final get
|
|
}
|
|
|
|
public final enum class test/Weapon : kotlin/Enum<test/Weapon> {
|
|
|
|
private constructor()
|
|
|
|
ROCK,
|
|
|
|
PAPER,
|
|
|
|
SCISSORS,
|
|
|
|
// has Enum.entries
|
|
}
|
|
|
|
public final enum entry test/Weapon.PAPER : test/Weapon {
|
|
}
|
|
|
|
public final enum entry test/Weapon.ROCK : test/Weapon {
|
|
}
|
|
|
|
public final enum entry test/Weapon.SCISSORS : test/Weapon {
|
|
}
|
|
}
|
|
}
|