mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-20 14:00:49 +07:00
10 lines
209 B
Java
10 lines
209 B
Java
class Test {
|
|
void foo() {
|
|
<caret>Runnable runnable = new Runnable() {
|
|
public void run() {
|
|
// This is comment"
|
|
int i = 1;
|
|
}
|
|
};
|
|
}
|
|
} |