mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
363 B
Java
17 lines
363 B
Java
public class Foo {
|
|
public static int main(String[] args) {
|
|
<caret>int r = 0;
|
|
new Runnable() {
|
|
public void run() {
|
|
// TODO1: not implemented
|
|
}
|
|
};
|
|
new Runnable() {
|
|
public void run() {
|
|
// TODO2: not implemented
|
|
}
|
|
};
|
|
return r;
|
|
}
|
|
}
|