summaryrefslogtreecommitdiff
path: root/test/files/run/t9546e.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9546e.scala')
-rw-r--r--test/files/run/t9546e.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t9546e.scala b/test/files/run/t9546e.scala
new file mode 100644
index 0000000000..b19d0871aa
--- /dev/null
+++ b/test/files/run/t9546e.scala
@@ -0,0 +1,15 @@
+case class A private (x: Int)
+case class B private (x: Int)(y: Int)
+
+class C {
+ def f = A(1)
+ def g = B(1)(2) // was: constructor B in class B cannot be accessed in class C
+}
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ new C().f
+ new C().g
+ }
+
+}