mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
12 lines
435 B
Plaintext
Vendored
12 lines
435 B
Plaintext
Vendored
package test
|
|
|
|
public open class AnnotatedValueParameter {
|
|
public constructor AnnotatedValueParameter()
|
|
public open fun f(/*0*/ @test.AnnotatedValueParameter.Anno(value = "non-empty") p0: kotlin.collections.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
}
|
|
}
|