49b6811b44
#KT-7492 Fixed (cherry picked from commit 75f6b7f)
10 lines
155 B
Plaintext
Vendored
10 lines
155 B
Plaintext
Vendored
// "Create abstract property 'foo'" "true"
|
|
interface A {
|
|
fun bar(b: Boolean) {}
|
|
|
|
val foo: Boolean<caret>
|
|
|
|
fun test() {
|
|
bar(foo)
|
|
}
|
|
} |