Fix testKotlin_moveTopLevelDeclarations_movePrivatePropertyWithDefaultAccessors_MovePrivatePropertyWithDefaultAccessors test

This commit is contained in:
Dmitry Gridin
2020-04-29 13:05:36 +07:00
parent b1bef8485d
commit 2f015b4c7a
@@ -1,7 +1,5 @@
package test
var tempY: Int = 0
get() {
TempY(); return field }
set(p: Int) {
TempY(); field = p }
get() { TempY(); return field }
set(p: Int) { TempY(); field = p }