summaryrefslogtreecommitdiff
path: root/test/files/run/t261.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-02-11 19:57:59 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-02-11 19:57:59 -0800
commitd187a0ab9973a5e4042597a9dbf4f6d48ca482fe (patch)
treecd8f48320c26c33cc3c3764c3f299b2506164994 /test/files/run/t261.scala
parent98320a6d5947f26e7252b025cf56a0763b39cd07 (diff)
downloadscala-d187a0ab9973a5e4042597a9dbf4f6d48ca482fe.tar.gz
scala-d187a0ab9973a5e4042597a9dbf4f6d48ca482fe.tar.bz2
scala-d187a0ab9973a5e4042597a9dbf4f6d48ca482fe.zip
SI-261 private vals in traits depend on composition order
Fix for SI-7475 in #3440 took care of this one. I nixed the old (redundant) test cases and replaced by a single run/ test, which didn't compile until.
Diffstat (limited to 'test/files/run/t261.scala')
-rw-r--r--test/files/run/t261.scala11
1 files changed, 11 insertions, 0 deletions
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