mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
Avoid having annotations between modifiers Fixes IDEA-274153 Make final inspection nullability issue GitOrigin-RevId: 19d44fc864f5be2c3ca39460744620f6c21bf074
10 lines
190 B
Java
10 lines
190 B
Java
// "Make 'foo' static" "true"
|
|
import java.lang.annotation.*;
|
|
|
|
interface I {
|
|
public @Anno int f<caret>oo() {
|
|
System.out.println();
|
|
}
|
|
}
|
|
@Target(ElementType.TYPE_USE)
|
|
@interface Anno {} |