mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
13 lines
164 B
Plaintext
13 lines
164 B
Plaintext
public class Subject {
|
|
private int myInt;
|
|
private int t;
|
|
|
|
public void wp(String s) {
|
|
myInt += t;
|
|
}
|
|
|
|
void foo() {
|
|
wp("s1");
|
|
wp("s2");
|
|
}
|
|
} |