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
@@ -1,5 +1,6 @@
annotation class Small(val i: Int, val s: String)
@Sma<caret>ll(1, "2") private fun test1() {
@Small(1, "2")
private fun test1() {
}
@@ -1,5 +1,6 @@
annotation class Small(val i: Int, val s: String)
@Small(<caret>1, "2") private fun test1() {
@Small(1, "2")
private fun test1() {
}