summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2014-05-13 21:17:50 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2014-05-13 21:17:50 +0200
commitc763d8413b8e1ef5129378952b2327e8a7c2de7d (patch)
tree5bacd568c182fae72d5a6dddbc6c7fe0f0d4e96d /test/files/run
parentea166087ce3fe2731a8b0d767cbbd4c5e5e648c1 (diff)
parentfa2204e1749b21aa838350f321d5d85644be4ecf (diff)
downloadscala-c763d8413b8e1ef5129378952b2327e8a7c2de7d.tar.gz
scala-c763d8413b8e1ef5129378952b2327e8a7c2de7d.tar.bz2
scala-c763d8413b8e1ef5129378952b2327e8a7c2de7d.zip
Merge pull request #3745 from lrytz/t8582
SI-8582 emit InnerClasses attribute in GenBCode
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)
-}