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

8 lines
141 B
Kotlin
Vendored

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