mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
17 lines
359 B
Java
17 lines
359 B
Java
// "Create method 'doSomething' in 'Test'" "true-preview"
|
|
public class Test {
|
|
public static void main(String[] args) {
|
|
blaat(new Runnable() {
|
|
public void run() {
|
|
doSomething();
|
|
}
|
|
});
|
|
}
|
|
|
|
private static void doSomething() {
|
|
<caret>
|
|
}
|
|
|
|
public static void blaat(Runnable o) {}
|
|
}
|