71299f1d13
^KT-56868 Fixed ^KT-57328
8 lines
149 B
Kotlin
Vendored
8 lines
149 B
Kotlin
Vendored
// Big
|
|
enum class Size { `2x2`, `3x3` }
|
|
annotation class Sized(val value: Size)
|
|
|
|
@Sized(Size.`3x3`)
|
|
class Big
|
|
|
|
// IGNORE_LIBRARY_EXCEPTIONS: KT-57328 |