[FIR] Create fir classes for java annotations and enums with Final modality

This commit is contained in:
Dmitriy Novozhilov
2021-05-25 15:46:08 +03:00
committed by teamcityserver
parent 6e83820f97
commit 7008f02962
12 changed files with 23 additions and 23 deletions
@@ -1,4 +1,4 @@
@R|test/AnnotatedAnnotation|() public abstract annotation class AnnotatedAnnotation : R|kotlin/Annotation| {
@R|test/AnnotatedAnnotation|() public final annotation class AnnotatedAnnotation : R|kotlin/Annotation| {
public constructor(): R|test/AnnotatedAnnotation|
}
@@ -1,4 +1,4 @@
public abstract annotation class SimpleAnnotation : R|kotlin/Annotation| {
public final annotation class SimpleAnnotation : R|kotlin/Annotation| {
public constructor(): R|test/SimpleAnnotation|
}