Kotlin inlined extension property
问题 I know inline keyword means to avoid the call overhead calling a funtion. But I can't figure out what inline a extension property work for? Let say we have two extension property named foo and another with is inlined named bar val Any.foo : Long get() = Date().time inline val Any.bar : Long get() = Date().time Executing any of them, we gent the expected output, the current time. The bytecode for this file is this below: public final class InlinedExtensionPropertyKt { public final static