j2k tests: INSTANCE$ -> INSTANCE
This commit is contained in:
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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user