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

12 lines
172 B
Kotlin
Vendored

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