7353b08f09
If a block statement starts with annotations treat them as they belong to node of the statement rather than to the closest prefix expression #KT-10210 Fixed
15 lines
135 B
Kotlin
Vendored
15 lines
135 B
Kotlin
Vendored
class C {
|
|
fun test() {
|
|
@Ann
|
|
}
|
|
|
|
fun foo() {
|
|
class Local {
|
|
@Ann
|
|
}
|
|
}
|
|
@Ann
|
|
}
|
|
|
|
@Ann
|