blob: 099628527a2a5f7295e3f75c8024b05ca887c9d4 [file] [log] [blame]
public class AssertInStatic {
static {
long x = 0;
try {
x = 0;
} catch (Throwable e) {
assert true;
}
}
}