Files
kotlin-fork/idea/testData/intentions/addJvmOverloads/method.kt
T
Kirill Rakhman 8e5481b5d5 Implement Intention to add @JvmOverloads (#860)
Implement Intention to add @JvmOverloads
Fixes #KT-11523
2016-04-29 14:32:00 +03:00

5 lines
121 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Add '@JvmOverloads' annotation to function 'foo'"
fun foo(a: String = ""<caret>) {
}