Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/callWithClassLiteral.kt.after
T
Alexey Sedunov eda747c0bf Minor: Fix tests
2017-07-19 11:34:30 +03:00

15 lines
347 B
Plaintext
Vendored

import kotlin.reflect.KClass
// "Create function 'checkProperty'" "true"
internal object model {
val layer = ""
}
fun main(args: Array<String>) {
checkProperty(model.layer::class)
}
fun checkProperty(kClass: KClass<out String>) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}