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

14 lines
186 B
Plaintext
Vendored

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