summaryrefslogtreecommitdiff
path: root/test/pending/run/t6387.scala
diff options
context:
space:
mode:
authorEugene Vigdorchik <eugene.vigdorchik@gmail.com>2013-04-08 14:12:26 +0400
committerEugene Vigdorchik <eugene.vigdorchik@gmail.com>2013-04-08 16:12:20 +0400
commit2885eb0b2d49c33c707cecd2ee7b9588fe3f76ab (patch)
tree4ae9b127439ae8dec0a8da3f0461130437dae2d8 /test/pending/run/t6387.scala
parent53e031f55386d131b1aaa5fb93ee1a3ac6bce646 (diff)
downloadscala-2885eb0b2d49c33c707cecd2ee7b9588fe3f76ab.tar.gz
scala-2885eb0b2d49c33c707cecd2ee7b9588fe3f76ab.tar.bz2
scala-2885eb0b2d49c33c707cecd2ee7b9588fe3f76ab.zip
Revert "SI-6387 Clones accessor before name expansion"
This reverts commit 4e10b2c833fa846c68b81e94a08d867e7de656aa. Add 6387 test to pending and 7341 to up-to-date.
Diffstat (limited to 'test/pending/run/t6387.scala')
-rw-r--r--test/pending/run/t6387.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/pending/run/t6387.scala b/test/pending/run/t6387.scala
new file mode 100644
index 0000000000..bbebb5f511
--- /dev/null
+++ b/test/pending/run/t6387.scala
@@ -0,0 +1,16 @@
+trait A {
+ def foo: Long
+}
+
+object Test {
+ def a(): A = new A {
+ var foo: Long = 1000L
+
+ val test = () => {
+ foo = 28
+ }
+ }
+ def main(args: Array[String]) {
+ println(a().foo)
+ }
+}