7 lines
205 B
Plaintext
Vendored
7 lines
205 B
Plaintext
Vendored
// ERROR: The feature "array literals in annotations" is only available since language version 1.2
|
|
|
|
annotation class Some(vararg val strings: String)
|
|
|
|
@Some(strings = *["alpha", "beta", "omega"])
|
|
class My
|