summaryrefslogtreecommitdiff
path: root/test/files/run/t6039.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6039.scala')
-rw-r--r--test/files/run/t6039.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/files/run/t6039.scala b/test/files/run/t6039.scala
deleted file mode 100644
index 9d811b0634..0000000000
--- a/test/files/run/t6039.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-import scala.tools.partest._
-
-object Test extends StoreReporterDirectTest {
- private def compileCode(): Boolean = {
- new java.io.File("util") mkdirs
- val classpath = List(sys.props("partest.lib"), ".") mkString sys.props("path.separator")
- log(s"classpath = $classpath")
- compileString(newCompiler("-cp", classpath, "-d", testOutput.path))(packageCode)
- }
- def code = ???
- def packageCode = """
-package scala.bippy
-class A { new util.Random() }
-"""
- def show(): Unit = {
- assert(compileCode(), filteredInfos take 1 mkString "")
- }
-}