Files
kotlin-fork/jps/jps-plugin/testData/incremental/pureKotlin/inlineClassVarProperty/inline.kt
T
Dmitry Petrov ab26de17eb 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.

Original commit: 8903504334
2017-05-16 17:28:43 +03:00

11 lines
132 B
Kotlin

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