6e19e8c055
Original commit: 1f2b4e20fe
11 lines
234 B
Kotlin
11 lines
234 B
Kotlin
package inline
|
|
|
|
class Inline {
|
|
inline fun getValue(receiver: Any?, prop: PropertyMetadata): Int {
|
|
return 0
|
|
}
|
|
|
|
inline fun setValue(receiver: Any?, prop: PropertyMetadata, value: Int) {
|
|
println(value)
|
|
}
|
|
} |