Correctly apply annotation wrap before modifier keyword
#KT-20314 Fixed
This commit is contained in:
@@ -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() {
|
||||
|
||||
}
|
||||
+2
-1
@@ -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() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user