Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/inlineClassVarProperty/inline.kt
T
Dmitry Petrov 8903504334 Update test for incremental compilation after new DCE
Previous test had an inline setter that didn't produce any effect,
thus, corresponding code was removed by new DCE.
Make sure that changes made in the inline property are caught up by IC.
2017-05-16 17:28:43 +03:00

11 lines
132 B
Kotlin
Vendored

package inline
class A {
var z = 0
inline var f: Int
get() = z
set(p: Int) {
z = p
}
}