15 lines
347 B
Plaintext
Vendored
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.
|
|
}
|