a2ebf07a93
#KT-14386 Fixed
14 lines
492 B
Kotlin
Vendored
14 lines
492 B
Kotlin
Vendored
fun foo(s: String?, flag: Boolean, x: Int){}
|
|
fun foo(xx: Boolean){}
|
|
|
|
fun bar() {
|
|
foo(<caret>)
|
|
}
|
|
|
|
// EXIST: { itemText: "null", attributes: "bold" }
|
|
// EXIST: { itemText: "true", attributes: "bold" }
|
|
// EXIST: { itemText: "false", attributes: "bold" }
|
|
// EXIST: { lookupString: "s = null", itemText: "s = null", attributes: "" }
|
|
// EXIST: { lookupString: "xx = true", itemText: "xx = true", attributes: "" }
|
|
// EXIST: { lookupString: "xx = false", itemText: "xx = false", attributes: "" }
|