8e5481b5d5
Implement Intention to add @JvmOverloads Fixes #KT-11523
7 lines
170 B
Plaintext
Vendored
7 lines
170 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Add '@JvmOverloads' annotation to secondary constructor"
|
|
|
|
class A {
|
|
@JvmOverloads
|
|
constructor(a: String = ""<caret>, b: Int)
|
|
} |