aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0504.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t0504.scala')
-rw-r--r--tests/pos/t0504.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pos/t0504.scala b/tests/pos/t0504.scala
new file mode 100644
index 000000000..b2b0b85e4
--- /dev/null
+++ b/tests/pos/t0504.scala
@@ -0,0 +1,9 @@
+package b {
+ class B
+}
+
+package a.b {
+ class A {
+ val x = new _root_.b.B
+ }
+}