@NotNull instrumentation: added test for duplicated labels in tableswitch instruction (IDEA-CR-11417)

This commit is contained in:
nik
2016-06-20 21:49:34 +03:00
parent 4ed85d93be
commit fd03434cfd
2 changed files with 30 additions and 0 deletions
@@ -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) {
}
}