Files
kotlin-fork/idea/testData/intentions/addJvmOverloads/secondaryConstructor.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

6 lines
152 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Add '@JvmOverloads' annotation to secondary constructor"
class A {
constructor(a: String = ""<caret>, b: Int)
}