summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-02-12 13:43:43 +0100
committerJason Zaugg <jzaugg@gmail.com>2014-02-12 13:43:43 +0100
commit00067482917cbe7ac337550e1f565fea966c2d78 (patch)
treecd8f48320c26c33cc3c3764c3f299b2506164994 /test/files
parent98320a6d5947f26e7252b025cf56a0763b39cd07 (diff)
parentd187a0ab9973a5e4042597a9dbf4f6d48ca482fe (diff)
downloadscala-00067482917cbe7ac337550e1f565fea966c2d78.tar.gz
scala-00067482917cbe7ac337550e1f565fea966c2d78.tar.bz2
scala-00067482917cbe7ac337550e1f565fea966c2d78.zip
Merge pull request #3512 from adriaanm/t261
private vals in traits depend on composition order
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/t261-ab.scala9
-rw-r--r--test/files/pos/t261-ba.scala9
-rw-r--r--test/files/run/t261.check2
-rw-r--r--test/files/run/t261.scala11
4 files changed, 13 insertions, 18 deletions
diff --git a/test/files/pos/t261-ab.scala b/test/files/pos/t261-ab.scala
deleted file mode 100644
index df641e811a..0000000000
--- a/test/files/pos/t261-ab.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-trait A { val foo: String = "A" }
-trait B {
- private val foo: String = "B"
- def f = println(foo)
-}
-object Test extends App with B with A {
- println(foo) // prints "A", as expected
- f // prints "B", as expected
-}
diff --git a/test/files/pos/t261-ba.scala b/test/files/pos/t261-ba.scala
deleted file mode 100644
index 6c9c5b10b7..0000000000
--- a/test/files/pos/t261-ba.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-trait B {
- private val foo: String = "B"
- def f = println(foo)
-}
-trait A { val foo: String = "A" }
-object Test extends App with B with A {
- println(foo) // prints "A", as expected
- f // prints "B", as expected
-}
diff --git a/test/files/run/t261.check b/test/files/run/t261.check
new file mode 100644
index 0000000000..35d242ba79
--- /dev/null
+++ b/test/files/run/t261.check
@@ -0,0 +1,2 @@
+A
+B
diff --git a/test/files/run/t261.scala b/test/files/run/t261.scala
new file mode 100644
index 0000000000..d8ddb28c00
--- /dev/null
+++ b/test/files/run/t261.scala
@@ -0,0 +1,11 @@
+trait A { val foo: String = "A" }
+trait B {
+ private val foo: String = "B"
+ def f = println(foo)
+}
+object Test extends A with B {
+ def main(args: Array[String]) = {
+ println(foo)
+ f
+ }
+} \ No newline at end of file