aboutsummaryrefslogtreecommitdiff
path: root/tests/pos
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2017-01-05 17:59:06 +0700
committerGitHub <noreply@github.com>2017-01-05 17:59:06 +0700
commit42eb864dc752254fc3b8b0428570fe94aa1dafc7 (patch)
treef625d3950b1804a0ce10b0f00627e97e58070ffa /tests/pos
parent2498cf9c18b5778df24ee944008ea72ff0fcab2c (diff)
parenta7e88df553be9dd2593dbb8581630ae815eedfb1 (diff)
downloaddotty-42eb864dc752254fc3b8b0428570fe94aa1dafc7.tar.gz
dotty-42eb864dc752254fc3b8b0428570fe94aa1dafc7.tar.bz2
dotty-42eb864dc752254fc3b8b0428570fe94aa1dafc7.zip
Merge pull request #1873 from dotty-staging/fix-#1865
Fix #1865: Compute outer path at right phase
Diffstat (limited to 'tests/pos')
-rw-r--r--tests/pos/i1865.scala24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/pos/i1865.scala b/tests/pos/i1865.scala
new file mode 100644
index 000000000..1b77558ff
--- /dev/null
+++ b/tests/pos/i1865.scala
@@ -0,0 +1,24 @@
+class AbsCell {
+ type T = Node
+ class Node
+}
+
+object Test {
+ def test: Unit = {
+ val cell = new AbsCell
+ new cell.T
+ }
+}
+
+class AbsCell2 {
+ type T = Node
+ val value: T = value
+ def set(x: T): Unit = {}
+ class Node
+}
+object init {
+ def main = {
+ val cell = new AbsCell2 { val init = new Node }
+ cell set (new cell.T)
+ }
+}