summaryrefslogtreecommitdiff
path: root/test/files/run/t9946a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9946a.scala')
-rw-r--r--test/files/run/t9946a.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/run/t9946a.scala b/test/files/run/t9946a.scala
new file mode 100644
index 0000000000..491fb31f7b
--- /dev/null
+++ b/test/files/run/t9946a.scala
@@ -0,0 +1,14 @@
+package p1 {
+ object O {
+ private case class N(a: Any)
+ lazy val x: AnyRef = N
+ lazy val y: AnyRef = new { assert(N != null) }
+ }
+}
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ p1.O.x
+ p1.O.y
+ }
+}