Skip to content

Commit

Permalink
leverage testkit for -Xsource:3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin committed Jan 21, 2024
1 parent b9ffb51 commit 122b695
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
rules = RemoveUnused
*/
package test.removeUnused

import java.io.*
import java.util.concurrent._

import scala.collection.mutable
import scala.util._
import scala.io.*

object RemoveUnusedImportsWildcards {
new File("")
new ConcurrentHashMap[String, String]()
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package test.removeUnused

import java.io.*
import java.util.concurrent._


object RemoveUnusedImportsWildcards {
new File("")
new ConcurrentHashMap[String, String]()
}

0 comments on commit 122b695

Please sign in to comment.