f60a7ffab0
#KT-4578 Fixed
7 lines
217 B
Plaintext
Vendored
7 lines
217 B
Plaintext
Vendored
|
|
@Target(AnnotationTarget.VALUE_PARAMETER)
|
|
annotation class ParameterAnnotation(val a: Int = 0)
|
|
|
|
class TestClass(@ParameterAnnotation(42) text: String = "LoremIpsum", val flag: Boolean) {
|
|
private val text = text
|
|
} |