Adjust testData to new labels syntax
This commit is contained in:
@@ -8,9 +8,9 @@
|
||||
fun Char.xx() : Double.() -> Unit {
|
||||
this : Char
|
||||
val <warning>a</warning>: Double.() -> Unit = { this : Double + this@xx : Char}
|
||||
val <warning>b</warning>: Double.() -> Unit = @a{this@a : Double + this@xx : Char}
|
||||
val <warning>c</warning> = @a{<error>this@a</error> <error>+</error> this@xx : Char}
|
||||
return (@a{this@a : Double + this@xx : Char})
|
||||
val <warning>b</warning>: Double.() -> Unit = a@{this@a : Double + this@xx : Char}
|
||||
val <warning>c</warning> = a@{<error>this@a</error> <error>+</error> this@xx : Char}
|
||||
return (a@{this@a : Double + this@xx : Char})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user