[FE 1.0] Prohibit array literals inside nested objects of annotation classes
^KT-39041 ^KT-50749 Fixed
This commit is contained in:
committed by
teamcity
parent
c1575edca4
commit
139a800ff7
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
// LANGUAGE: -ProhibitArrayLiteralsInCompanionOfAnnotation
|
||||
// ISSUE: KT-39041
|
||||
|
||||
annotation class Ann(val x: IntArray = [1, 2, 3]) { // OK
|
||||
companion object {
|
||||
val y1: IntArray = [1, 2, 3] // Error
|
||||
|
||||
val z1: IntArray
|
||||
get() = [1, 2, 3] // Error
|
||||
|
||||
fun test_1(): IntArray {
|
||||
return [1, 2, 3] // Error
|
||||
}
|
||||
|
||||
class Nested {
|
||||
val y2: IntArray = [1, 2, 3] // Error
|
||||
|
||||
val z2: IntArray
|
||||
get() = [1, 2, 3] // Error
|
||||
|
||||
fun test_2(): IntArray {
|
||||
return [1, 2, 3] // Error
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
object Foo {
|
||||
val y3: IntArray = [1, 2, 3] // Error
|
||||
|
||||
val z3: IntArray
|
||||
get() = [1, 2, 3] // Error
|
||||
|
||||
fun test_3(): IntArray {
|
||||
return [1, 2, 3] // Error
|
||||
}
|
||||
}
|
||||
|
||||
class Nested {
|
||||
val y4: IntArray = [1, 2, 3] // Error
|
||||
|
||||
val z4: IntArray
|
||||
get() = [1, 2, 3] // Error
|
||||
|
||||
fun test_4(): IntArray {
|
||||
return [1, 2, 3] // Error
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user