summaryrefslogtreecommitdiff
path: root/test/files/res/t5489/t5489.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-07-01 12:42:42 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-07-01 12:54:12 +0200
commitad51d8295388c02ca9160177aaba1b7e490eb5c2 (patch)
treea532bdebce0f4b3ef316fa3635e684b927710b71 /test/files/res/t5489/t5489.scala
parent0a9cea6ea58571deb67d60193d60d12be6bb0233 (diff)
downloadscala-ad51d8295388c02ca9160177aaba1b7e490eb5c2.tar.gz
scala-ad51d8295388c02ca9160177aaba1b7e490eb5c2.tar.bz2
scala-ad51d8295388c02ca9160177aaba1b7e490eb5c2.zip
SI-5489 Avoid accidentally adding members to Object in erasure.
`Symbol#classBound` assumed that `refinedType` would return a a type based on new refinement class symbol; but that isn't so during erasure. Instead, it returns the first super class, into which we entered new members. Needless to say, the next run of the resident compiler didn't take kindly to these hijinks. To remedy the situation, I've added (yet another) condition on `phase.erasedTypes`.
Diffstat (limited to 'test/files/res/t5489/t5489.scala')
-rw-r--r--test/files/res/t5489/t5489.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/res/t5489/t5489.scala b/test/files/res/t5489/t5489.scala
new file mode 100644
index 0000000000..f821a1a9b6
--- /dev/null
+++ b/test/files/res/t5489/t5489.scala
@@ -0,0 +1,14 @@
+package repro
+
+trait HasString {
+ def blerg(): String
+}
+
+class CausesProblems {
+ def problems = (
+ if ("don't optimize me away!".length == 0)
+ new HasString { def blerg() = "wut" }
+ else
+ new HasString { def blerg() = "okay" }
+ ).blerg()
+}