Files
kotlin-fork/idea/testData/internal/toolWindow/inlineProperty/inlinePropertyDep.kt
T
Nikolay Krasko 6fcb1716eb 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
2018-11-01 17:12:45 +03:00

6 lines
92 B
Kotlin
Vendored

package inlineProperty
inline val String.foo: Boolean
get() {
return true
}