summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-02-22 10:44:48 +0100
committerJason Zaugg <jzaugg@gmail.com>2014-02-22 11:13:50 +0100
commit5dfcf5eb6a2fea69327420a3ebc4792f9365bf5a (patch)
tree4579d84e6063552cea02f4f7a09b02d74ceaef92 /test/files
parent00624a39ed84c3fd245dd9df7454d4cec4399e13 (diff)
downloadscala-5dfcf5eb6a2fea69327420a3ebc4792f9365bf5a.tar.gz
scala-5dfcf5eb6a2fea69327420a3ebc4792f9365bf5a.tar.bz2
scala-5dfcf5eb6a2fea69327420a3ebc4792f9365bf5a.zip
SI-8324 Fix regression in override checks for sealed classes
adeffda25 changed `Symbol#isEffectivelyFinal` to help the optimizer by inferring finality within sealed class hierarchies. However, this change wasn't neccesarily welcome for other clients of that method. In the enclosed test case, we see that overriding checks in `RefChecks` regressed. This commit moves the enhanced version into a new method and selectively uses it in the optimizer (and the tail call optimizer).
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/t8234.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/pos/t8234.scala b/test/files/pos/t8234.scala
new file mode 100644
index 0000000000..2cb1562326
--- /dev/null
+++ b/test/files/pos/t8234.scala
@@ -0,0 +1,16 @@
+package p1
+
+private abstract class ProjectDef(val autoPlugins: Any) extends ProjectDefinition
+sealed trait ResolvedProject extends ProjectDefinition {
+ def autoPlugins: Any
+}
+
+sealed trait ProjectDefinition {
+ private[p1] def autoPlugins: Any
+}
+
+
+object Test {
+ // was "error: value autoPlugins in class ProjectDef of type Any cannot override final member"
+ new ProjectDef(null) with ResolvedProject
+}