Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
missingDependencyNestedAnnotation
/
library
/
a.kt
blob: 17d7314b7bb156a0698811607fe3ae006e088879 [
file
]
package
a
import
kotlin
.
reflect
.
KClass
interface
A
{
@Target
(
AnnotationTarget
.
CLASS
,
AnnotationTarget
.
FUNCTION
,
AnnotationTarget
.
TYPE_PARAMETER
)
annotation
class
Anno
(
val value
:
String
)
}
annotation
class
K
(
val klass
:
KClass
<*>)