mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
@NotNull instrumentation: added test for duplicated labels in tableswitch instruction (IDEA-CR-11417)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class MultipleMessages {
|
||||
@NotNull
|
||||
public Object foo1() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public Object foo2() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public void bar1(@NotNull Object a) {
|
||||
}
|
||||
|
||||
public void bar2(@NotNull Object b) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user