diff --git a/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt b/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt index 6b8683816fa..d5a73e13253 100644 --- a/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt +++ b/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt @@ -27,6 +27,6 @@ interface UAnnotation : UElement, UNamed, UFqNamed, NoTraverse { valueArguments.joinToString { it.renderString() } + ")" } -interface UAnnotated { +interface UAnnotated : UElement { val annotations: List } \ No newline at end of file