blob: 838ff68131de49243e76ac7cc23d3e48ad817e05 [file] [log] [blame]
public class Deprecations {
/** @deprecated */
public int byComment;
@Deprecated
public int byAnno;
/** @deprecated */
public void byComment() { }
@Deprecated
public void byAnno() { }
/** @deprecated */
public static class ByComment { }
@Deprecated
public static class ByAnno { }
}