Correctly apply annotation wrap before modifier keyword

#KT-20314 Fixed
This commit is contained in:
Dmitry Jemerov
2017-12-20 17:17:22 +01:00
parent fa19bd6d9b
commit 43ef113b7a
21 changed files with 65 additions and 25 deletions
@@ -3,11 +3,13 @@ annotation class Concat
abstract class A {
// INFO: {"checked": "true", "toAbstract": "true"}
@Concat abstract var extraction: Int
@Concat
abstract var extraction: Int
}
// SIBLING:
class Abstraction : A() {
// INFO: {"checked": "true", "toAbstract": "true"}
@Concat override var extraction = 0
@Concat
override var extraction = 0
}