blob: 440731e5b52362b2f6769d2f4ac38a77b39b750d [file] [log] [blame]
package pkg;
class Deprecated {
/** @deprecated don't use */
int byComment;
@java.lang.Deprecated
int byAnno;
/** @deprecated don't use */
void byComment() { }
@java.lang.Deprecated
void byAnno() { }
/** @deprecated don't use */
static class ByComment { }
@java.lang.Deprecated
static class ByAnno { }
}