242e16baea
Only do it for typealiases. #KT-64059 Fixed
11 lines
221 B
Kotlin
Vendored
11 lines
221 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-64059
|
|
|
|
interface OuterInterface
|
|
|
|
class MyClass: @MyClass.NestedAnnotation OuterInterface {
|
|
|
|
@Target(AnnotationTarget.CLASS, AnnotationTarget.TYPE)
|
|
annotation class NestedAnnotation
|
|
}
|