c89d1af9fa
Place generated property next to other properties #KT-14886 Fixed
10 lines
155 B
Plaintext
Vendored
10 lines
155 B
Plaintext
Vendored
// "Create abstract property 'foo'" "true"
|
|
interface A {
|
|
val foo: Boolean<caret>
|
|
|
|
fun bar(b: Boolean) {}
|
|
|
|
fun test() {
|
|
bar(foo)
|
|
}
|
|
} |