Files
kotlin-fork/jps-plugin/testData/incremental/withJava/other/innerClassNotGeneratedWhenRebuilding/IntrospectorImpl.kt.new
T
2017-08-29 02:24:38 +03:00

13 lines
380 B
Plaintext
Vendored

class IntrospectorImpl(model: ModuleImpl) : Introspector<ModuleImpl>(model) {
private inner class SchemaRetriever(transaction: Any) : Introspector<ModuleImpl>.SchemaRetriever(transaction) {
internal fun retrieve() {
inSchema { schema -> println(schema) }
}
}
}
class ModuleImpl : Model {
override fun modify(modifier: ModelModifier) {}
}