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

14 lines
212 B
Kotlin
Vendored

// "Create actual class for module testModule_JVM (JVM)" "true"
expect class <caret>WithNested {
fun foo(): Int
class Nested {
fun bar()
}
inner class Inner {
fun baz()
}
}