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

13 lines
150 B
Plaintext
Vendored

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