mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
14 lines
363 B
Plaintext
Vendored
14 lines
363 B
Plaintext
Vendored
package test
|
|
|
|
public interface StringConcatenationInParam {
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
}
|
|
|
|
@test.StringConcatenationInParam.Anno(value = "hello") public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|