Files
kotlin/idea/testData/multiModuleQuickFix/createVarInExpectClass/header/header.kt.after
2017-11-30 12:49:24 +03:00

10 lines
155 B
Plaintext
Vendored

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