Add quickfix for incorrect @JvmOverloads annotation

#KT-12701 Fixed
This commit is contained in:
Dmitry Jemerov
2016-11-17 13:09:03 +01:00
parent 12e4cf9a4f
commit 140c7351a8
6 changed files with 78 additions and 4 deletions
@@ -0,0 +1,6 @@
// "Remove @JvmOverloads annotation" "true"
// WITH_RUNTIME
interface T {
@kotlin.jvm.<caret>JvmOverloads fun foo(s: String = "OK")
}
@@ -0,0 +1,6 @@
// "Remove @JvmOverloads annotation" "true"
// WITH_RUNTIME
interface T {
fun foo(s: String = "OK")
}