mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
Create a supertype for all Kotlin annotations, jet.Annotation. Map java.lang.annotation.Annotation to jet.Annotation and vice versa. Add extension function "annotationType()" to every annotation, similar to java.lang.annotation.Annotation.annotationType() #KT-1620 Fixed
6 lines
158 B
Plaintext
6 lines
158 B
Plaintext
namespace test
|
|
|
|
public final annotation class test.SimpleAnnotation : jet.Annotation {
|
|
public final /*constructor*/ fun <init>(): test.SimpleAnnotation
|
|
}
|