blob: 8f239de6ded904c09acc71042df75265322b7c9a [file] [log] [blame]
import org.checkerframework.common.util.report.qual.*;
package java.util.concurrent;
// test annotations placed on plain enum constants
enum TimeUnit {
NANOSECONDS,
MICROSECONDS,
@ReportReadWrite MILLISECONDS,
@ReportReadWrite SECONDS;
@ReportCall
long toMicros(long d);
}