import org.jetbrains.annotations.NotNull;
class BrokenAlignment {
@NotNull
Object test1() {
try {
bar(null);
return null;
}
catch (RuntimeException e) {
return null;
}
}
@NotNull
Object test2() {
try {
bar(null);
return null;
}
catch (IllegalArgumentException | IllegalStateException e) {
return null;
}
}
@NotNull
Object test3() {
try {
bar(null);
return null;
}
catch (AssertionError | IllegalStateException e) {
return null;
}
}
public void bar(@NotNull Object foo) {
assert foo != null;
}
public void bar2(@NotNull Object foo) {
assert foo != null;
try { }
catch (java.lang.RuntimeException ex) { }
}
}