mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 11:07:44 +07:00
GitOrigin-RevId: 1f370ec15dad0027f8625131c67795e15586edd5
10 lines
198 B
Java
10 lines
198 B
Java
class Test {
|
|
public void method() {
|
|
int temp = 1 + 2;
|
|
Runnable r = new Runnable() {
|
|
public void run() {
|
|
int i = temp;
|
|
}
|
|
};
|
|
}
|
|
} |