Test markdown code style

code snippet 1

public interface Iterate {
    object next();
}

code snippet 2

@Retention(RetentionPolicy.CLASS)
public @interface DesireWarning {
    /**
     * The value indicates the bug code (e.g., NP) or bug pattern (e.g.,
     * IL_INFINITE_LOOP) of the desired warning
     */
    public String value();

    /** Want a warning at this priority or higher */
    public Confidence confidence() default Confidence.LOW;
    
    /** Expect a warning at least this scary */
    public int rank() default 20;

}

你可能感兴趣的:(Test markdown code style)