We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6c9b45 commit d224c75Copy full SHA for d224c75
dotty-scala-library-from-tasty-tests/test/LibraryTest.scala
@@ -23,6 +23,13 @@ class TastyInspectorTest:
23
@Test def testFromTasty: Unit =
24
compileFromTasty(loadBlacklisted.union(compileBlacklisted))
25
26
+ @Ignore
27
+ @Test def testWhiteListFromTasty: Unit =
28
+ val whitelist = Set(
29
+ "scala.collection.mutable.StringBuilder"
30
+ )
31
+ compileFromTasty(x => !whitelist(x))
32
+
33
@Test def blacklistNoDuplicates =
34
def testDup(name: String, list: List[String], set: Set[String]) =
35
assert(list.size == set.size,
0 commit comments