Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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
<*>)