6fcb1716eb
There's an additional resolve for inline declarations to make backend happy with the passed binding context object. Unlike functions, properties were not processed. #KT-27460 Fixed
6 lines
92 B
Kotlin
Vendored
6 lines
92 B
Kotlin
Vendored
package inlineProperty
|
|
|
|
inline val String.foo: Boolean
|
|
get() {
|
|
return true
|
|
} |