ab26de17eb
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
11 lines
132 B
Kotlin
11 lines
132 B
Kotlin
package inline
|
|
|
|
class A {
|
|
var z = 0
|
|
|
|
inline var f: Int
|
|
get() = z
|
|
set(p: Int) {
|
|
z = p
|
|
}
|
|
} |