mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
javac ignores problems caused by files located in wrong directories, IDEA reports them: try to search class by FQName when failed to resolve normally (IDEA-178376; IDEA-176179)
12 lines
214 B
Java
12 lines
214 B
Java
// "Add constructor parameter" "true"
|
|
package javax.annotation;
|
|
class A {
|
|
@Nonnull private final Object field;
|
|
|
|
A(@Nonnull Object field, String... strs) {
|
|
this.field = field;
|
|
}
|
|
|
|
}
|
|
|
|
@interface Nonnull {} |