j2k tests: INSTANCE$ -> INSTANCE

This commit is contained in:
Pavel V. Talanov
2015-10-07 16:09:21 +03:00
committed by Michael Bogdanov
parent c28107034a
commit 679748e1ee
@@ -3,10 +3,10 @@ import kotlinApi.KotlinObject;
class C {
int foo() {
KotlinObject.INSTANCE$.setProperty1(1);
KotlinObject.INSTANCE$.setProperty2(2);
return KotlinObject.INSTANCE$.foo() +
KotlinObject.INSTANCE$.getProperty1() +
KotlinObject.INSTANCE$.getProperty2();
KotlinObject.INSTANCE.setProperty1(1);
KotlinObject.INSTANCE.setProperty2(2);
return KotlinObject.INSTANCE.foo() +
KotlinObject.INSTANCE.getProperty1() +
KotlinObject.INSTANCE.getProperty2();
}
}