DEBSOURCES
Skip Quicknav
sources / checker-framework-java / 3.0.1%2Bds2-3 / checker / tests / nullness / AssertInStatic.java
1234567891011
public class AssertInStatic { static { long x = 0; try { x = 0; } catch (Throwable e) { assert true; } } }