Correctly apply annotation wrap before modifier keyword
#KT-20314 Fixed
This commit is contained in:
@@ -2,10 +2,12 @@ annotation class Concat
|
||||
|
||||
abstract class A {
|
||||
// INFO: {"checked": "true", "toAbstract": "true"}
|
||||
@Concat abstract var extraction: Int
|
||||
@Concat
|
||||
abstract var extraction: Int
|
||||
}
|
||||
|
||||
class Abstraction : A() {
|
||||
// INFO: {"checked": "true", "toAbstract": "true"}
|
||||
@Concat override var extraction = 0
|
||||
@Concat
|
||||
override var extraction = 0
|
||||
}
|
||||
Reference in New Issue
Block a user