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