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