mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 15:51:52 +00:00
12 lines
337 B
Plaintext
Vendored
12 lines
337 B
Plaintext
Vendored
package test
|
|
|
|
public open class AnnotatedMethod {
|
|
public constructor AnnotatedMethod()
|
|
@test.AnnotatedMethod.Anno(value = 42) public open fun f(): kotlin.Unit
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.Int)
|
|
public final val value: kotlin.Int
|
|
}
|
|
}
|