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