Kapt: calculate default values of Kotlin annotations correctly for annotations from binaries (KT-13733)
(cherry picked from commit fed9cb2)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// Some user annotation is required because annoations from kotlin.jvm are filtered out in kapt
|
||||
annotation class Anno
|
||||
|
||||
@JvmSuppressWildcards
|
||||
@Anno
|
||||
class Test
|
||||
|
||||
@JvmSuppressWildcards(suppress = true)
|
||||
class TestTrue
|
||||
|
||||
@JvmSuppressWildcards(suppress = false)
|
||||
class TestFalse
|
||||
Reference in New Issue
Block a user