summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t8582.check2
-rw-r--r--test/files/run/t8582.scala16
2 files changed, 0 insertions, 18 deletions
diff --git a/test/files/run/t8582.check b/test/files/run/t8582.check
deleted file mode 100644
index 7e96756986..0000000000
--- a/test/files/run/t8582.check
+++ /dev/null
@@ -1,2 +0,0 @@
-class p1.p2.Singleton$Singleton$
-List(class p1.p2.Singleton$Singleton$Singleton$)
diff --git a/test/files/run/t8582.scala b/test/files/run/t8582.scala
deleted file mode 100644
index 844ab8ac14..0000000000
--- a/test/files/run/t8582.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-package p1 {
- package p2 {
- object Singleton {
- object Singleton {
- object Singleton
- }
- }
- }
-}
-
-
-object Test extends App {
- import p1.p2._
- println(Singleton.Singleton.getClass)
- println(Singleton.Singleton.getClass.getDeclaredClasses.toList)
-}