Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
missingDependencyNestedAnnotationIr
/
library
/
a.kt
blob: 17d7314b7bb156a0698811607fe3ae006e088879 [
file
] [
log
] [
blame
]
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
<*>)