mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
17 lines
289 B
Java
17 lines
289 B
Java
// "Replace with lambda" "false"
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
class Test {
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@interface A {}
|
|
|
|
{
|
|
Runnable r = new Ru<caret>nnable() {
|
|
@A
|
|
public void run() {
|
|
}
|
|
};
|
|
}
|
|
} |