blob: cdc849300006671e87f9d312f728f8c7d4f1fe1f [file] [log] [blame]
// "Remove 'unchecked' suppression" "false"
@SuppressWarnings({"unchecked", "bla-blah-toolid"})
public enum Planet {
MERCURY(),
VENUS();
<T> Plan<caret>et(T... ts) {
}
}