10 lines
109 B
Kotlin
Vendored
10 lines
109 B
Kotlin
Vendored
package org.test
|
|
|
|
class Outer {
|
|
@RequiresOptIn
|
|
annotation class Nested
|
|
}
|
|
|
|
@Outer.Nested
|
|
fun foo() {}
|