mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
12 lines
441 B
Java
12 lines
441 B
Java
class ClassObject {
|
|
void foo() {
|
|
WithClassObject.object$.getValue();
|
|
WithClassObject.object$.getValue();
|
|
WithClassObject.object$.foo();
|
|
WithClassObject.object$.getValueWithGetter();
|
|
WithClassObject.object$.getVariable();
|
|
WithClassObject.object$.setVariable(0);
|
|
WithClassObject.object$.getVariableWithAccessors();
|
|
WithClassObject.object$.setVariableWithAccessors(0);
|
|
}
|
|
} |