summaryrefslogtreecommitdiff
path: root/test/pending/run/t6387.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t6387.scala')
-rw-r--r--test/pending/run/t6387.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/pending/run/t6387.scala b/test/pending/run/t6387.scala
deleted file mode 100644
index bbebb5f511..0000000000
--- a/test/pending/run/t6387.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-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)
- }
-}