8 lines
143 B
Kotlin
Vendored
8 lines
143 B
Kotlin
Vendored
package inline
|
|
|
|
import kotlin.reflect.KProperty
|
|
|
|
inline operator fun Inline.getValue(receiver: Any?, prop: KProperty<*>): Int {
|
|
return 0
|
|
}
|