Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/createVarInExpectClass/header/header.kt.after
T
2019-08-27 17:26:08 +07:00

9 lines
119 B
Plaintext
Vendored

// "Create member property 'Foo.foo'" "true"
expect class Foo {
var foo: Int
}
fun test(f: Foo) {
f.foo = 1
}