summaryrefslogtreecommitdiff
path: root/test/files/run/bug4827b.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-07-28 07:04:26 +0000
committerPaul Phillips <paulp@improving.org>2011-07-28 07:04:26 +0000
commit892ecd2db75cb41cbcb582c26c2a7b32186625c0 (patch)
treeef7a68a88f4e2cbb4506afdf7f076f6119a2365c /test/files/run/bug4827b.scala
parent5dbb616610b616bff7ec8bb9b78a6f8a59203d7d (diff)
downloadscala-892ecd2db75cb41cbcb582c26c2a7b32186625c0.tar.gz
scala-892ecd2db75cb41cbcb582c26c2a7b32186625c0.tar.bz2
scala-892ecd2db75cb41cbcb582c26c2a7b32186625c0.zip
Changed forwarders not to generate final method...
Changed forwarders not to generate final methods, which otherwise would induce VerifyErrors anytime the companion class was subclassed and had a method with the same signature. Closes SI-4827, no review.
Diffstat (limited to 'test/files/run/bug4827b.scala')
-rw-r--r--test/files/run/bug4827b.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/run/bug4827b.scala b/test/files/run/bug4827b.scala
new file mode 100644
index 0000000000..84d6d907d3
--- /dev/null
+++ b/test/files/run/bug4827b.scala
@@ -0,0 +1,18 @@
+package foo {
+ class Foo { }
+ object Foo {
+ def bippy(x: Int) = x
+ }
+}
+
+package bar {
+ class Bippy extends foo.Foo {
+ def bippy(x: Int) = x
+ }
+}
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ new bar.Bippy bippy 5
+ }
+}