10 lines
209 B
Plaintext
Vendored
10 lines
209 B
Plaintext
Vendored
package test;
|
|
|
|
class C {
|
|
void foo() {
|
|
Utils.INSTANCE.foo1(Utils.staticField);
|
|
Utils.staticField += Utils.INSTANCE.foo2();
|
|
PureUtils.INSTANCE.foo1(PureUtils.INSTANCE.foo2())
|
|
}
|
|
}
|