mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
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;
|
|
}
|
|
};
|
|
}
|
|
} |