summaryrefslogtreecommitdiff
path: root/test/files/run/t8582.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2014-05-13 10:16:01 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2014-05-13 10:16:01 +0200
commitea166087ce3fe2731a8b0d767cbbd4c5e5e648c1 (patch)
treed89cd3a6d37ffa33b71be89a54e9bc398ec605cc /test/files/run/t8582.scala
parent6cb6d37c99bb66d5a83cbaa4633bba0f2aa8c1ba (diff)
parent3a8d9fb6be1f11554401d305ef218ea4e25ffa06 (diff)
downloadscala-ea166087ce3fe2731a8b0d767cbbd4c5e5e648c1.tar.gz
scala-ea166087ce3fe2731a8b0d767cbbd4c5e5e648c1.tar.bz2
scala-ea166087ce3fe2731a8b0d767cbbd4c5e5e648c1.zip
Merge pull request #3744 from retronym/ticket/8582
SI-8582 Pending test for InnerClasses bug in GenBCode
Diffstat (limited to 'test/files/run/t8582.scala')
-rw-r--r--test/files/run/t8582.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/run/t8582.scala b/test/files/run/t8582.scala
new file mode 100644
index 0000000000..844ab8ac14
--- /dev/null
+++ b/test/files/run/t8582.scala
@@ -0,0 +1,16 @@
+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)
+}