2423b7b62f
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
12 lines
136 B
Kotlin
Vendored
12 lines
136 B
Kotlin
Vendored
// STRIP_METADATA
|
|
|
|
enum class Foo {
|
|
BLA("bla");
|
|
|
|
val bla: String
|
|
|
|
constructor(bla: String) {
|
|
this.bla = bla
|
|
}
|
|
}
|