789ff0b273
Resolution for properties declared as primary constructor parameters used to ignore the varargs annotation. #KT-1838 Fixed
6 lines
70 B
Plaintext
6 lines
70 B
Plaintext
class A(vararg t : Int) {
|
|
{
|
|
val t1 : IntArray = t
|
|
}
|
|
}
|