bcd221f714
Since all anonymous types are approximated to a supertype in kapt, type mapping doesn't require backend information (mapping of anonymous types to class names) and can be performed statically, independently from particular JVM backend internals, via descriptorBasedTypeMapping. #KT-49682
16 lines
232 B
Kotlin
Vendored
16 lines
232 B
Kotlin
Vendored
package test
|
|
|
|
internal class Simple {
|
|
@MyAnnotation
|
|
fun myMethod() {}
|
|
|
|
class NestedClass {
|
|
class NestedNestedClass
|
|
}
|
|
|
|
inner class InnerClass
|
|
companion object
|
|
}
|
|
|
|
internal annotation class MyAnnotation
|