mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
11 lines
154 B
Java
Vendored
11 lines
154 B
Java
Vendored
package test;
|
|
|
|
class J {
|
|
void test(O o) {
|
|
o.getFoo();
|
|
o.setFoo(1);
|
|
|
|
O.INSTANCE.getFoo();
|
|
O.INSTANCE.setFoo(2);
|
|
}
|
|
} |