4b284a4890
At the moment, it's not published anywhere, but that may change soon #KT-23198
9 lines
205 B
Kotlin
Vendored
9 lines
205 B
Kotlin
Vendored
internal inline fun <reified X : Any> topLevelFun(x: X) = X::class
|
|
|
|
var topLevelProp: String? = null
|
|
private set
|
|
|
|
typealias F<T, U> = Map<T, (StringBuilder) -> U?>
|
|
|
|
typealias G<S> = F<List<S>, Set<S>>
|