fc2c0eea27
#KT-49682
14 lines
226 B
Kotlin
Vendored
14 lines
226 B
Kotlin
Vendored
import kotlinx.kapt.*
|
|
|
|
class Test {
|
|
@KaptIgnored
|
|
fun ignoredFun() {}
|
|
|
|
@KaptIgnored @get:KaptIgnored
|
|
const val ignoredProperty: String = ""
|
|
|
|
fun nonIgnoredFun() {}
|
|
|
|
val nonIgnoredProperty: String = ""
|
|
}
|