mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
15 lines
326 B
Java
15 lines
326 B
Java
// "Replace with lambda" "false"
|
|
import java.lang.annotation.*;
|
|
|
|
class MyTest {
|
|
final Runnable anonymRunnable = new @A Run<caret>nable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println();
|
|
}
|
|
};
|
|
}
|
|
|
|
@Target({ElementType.TYPE_USE})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@interface A {} |