bb2a5b00b7
#KT-10954 Fixed
12 lines
189 B
Kotlin
Vendored
12 lines
189 B
Kotlin
Vendored
// WITH_DEFAULT_VALUE: false
|
|
|
|
class A {
|
|
val prop = ""
|
|
|
|
fun foo() = bar("")
|
|
|
|
private fun bar(x: String): Boolean {
|
|
<selection>prop</selection>
|
|
return true
|
|
}
|
|
} |