- Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
area:lintingLinting warnings enabled with -W or -XlintLinting warnings enabled with -W or -Xlintitype:bug
Milestone
Description
Compiler version
3.3.0-RC2
Minimized code
import org.openjdk.jmh.annotations.*, Mode.{SingleShotTime, Throughput} import java.util.concurrent.TimeUnit @State(Scope.Thread) @BenchmarkMode(Array(Throughput, SingleShotTime)) @Fork( jvmArgsAppend = Array( "--enable-preview", "--enable-native-access=ALL-UNNAMED" ) ) @OutputTimeUnit(TimeUnit.MICROSECONDS) class Testhttps://scastie.scala-lang.org/W9ZhbHhJTr2zjkBC5FwUXQ
Output
unused imports for singleshot time, throughput, and TimeUnit
Expectation
These are clearly used.
Metadata
Metadata
Assignees
Labels
area:lintingLinting warnings enabled with -W or -XlintLinting warnings enabled with -W or -Xlintitype:bug