77625831f7
#KT-22759 In Progress
10 lines
165 B
Kotlin
Vendored
10 lines
165 B
Kotlin
Vendored
package org.test
|
|
|
|
class Outer {
|
|
@Experimental(Experimental.Level.ERROR, [Experimental.Impact.LINKAGE])
|
|
annotation class Nested
|
|
}
|
|
|
|
@Outer.Nested
|
|
fun foo() {}
|