Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c35e97a8dc1b95945d4b0bc57de45a0550682bc
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
annotations
/
ClassObjectAnnotatedWithItsKClass.kt
blob: 01aa83d3acfc9a2734a4ae340ca4423e35409925 [
file
]
// FIR_IDENTICAL
package
test
import
kotlin
.
reflect
.
KClass
annotation
class
AnnClass
(
val a
:
KClass
<*>)
class
MyClass
{
@AnnClass
(
MyClass
::
class
)
companion
object
{
}
}