Implement Intention to add @JvmOverloads (#860)

Implement Intention to add @JvmOverloads
Fixes #KT-11523
This commit is contained in:
Kirill Rakhman
2016-04-29 13:32:00 +02:00
committed by Dmitry Jemerov
parent f309920af8
commit 8e5481b5d5
15 changed files with 199 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
// WITH_RUNTIME
// INTENTION_TEXT: "Add '@JvmOverloads' annotation to function 'foo'"
fun foo(a: String = ""<caret>) {
}