summaryrefslogtreecommitdiff
path: root/test/files/pos/t4831.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t4831.scala')
-rw-r--r--test/files/pos/t4831.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/t4831.scala b/test/files/pos/t4831.scala
new file mode 100644
index 0000000000..48002106e6
--- /dev/null
+++ b/test/files/pos/t4831.scala
@@ -0,0 +1,11 @@
+object O {
+ val a = 0
+}
+
+
+object test {
+ val O1: O.type = O
+ val O2: O.type = O
+ import O1.a, O2.a
+ println(a)
+}