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>
16 lines
283 B
Kotlin
Vendored
16 lines
283 B
Kotlin
Vendored
// STRIP_METADATA
|
|
// TODO: Re-enable metadata generation
|
|
import kotlinx.kapt.*
|
|
|
|
class Test {
|
|
@KaptIgnored
|
|
fun ignoredFun() {}
|
|
|
|
@KaptIgnored @get:KaptIgnored
|
|
const val ignoredProperty: String = ""
|
|
|
|
fun nonIgnoredFun() {}
|
|
|
|
val nonIgnoredProperty: String = ""
|
|
}
|