summaryrefslogtreecommitdiff
path: root/test/files/run/t9546d.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9546d.scala')
-rw-r--r--test/files/run/t9546d.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/run/t9546d.scala b/test/files/run/t9546d.scala
new file mode 100644
index 0000000000..00bf37dc18
--- /dev/null
+++ b/test/files/run/t9546d.scala
@@ -0,0 +1,16 @@
+class X {
+ def test: Any = {
+ object Opt {
+ def mkOpt = Opt("")
+ }
+ case class Opt[A] private[X](val get: A)
+ Opt.mkOpt
+ }
+}
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ new X().test
+ }
+}
+