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