Do additional resolve for inline properties for backend (KT-27460)
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
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
package inlineProperty
|
||||
|
||||
val x = "".foo
|
||||
@@ -0,0 +1,6 @@
|
||||
package inlineProperty
|
||||
|
||||
inline val String.foo: Boolean
|
||||
get() {
|
||||
return true
|
||||
}
|
||||
Reference in New Issue
Block a user