summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Typers.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-07-30 09:13:16 -0700
committerPaul Phillips <paulp@improving.org>2012-07-30 09:24:31 -0700
commit991b50f3f440a631bfa1d76f79fdc31ccdbc3fdf (patch)
tree62fda198c732e74330867ce914194372b385eda6 /src/compiler/scala/tools/nsc/typechecker/Typers.scala
parentd1b7b24b0bfb808875339366a13ed00672767c16 (diff)
downloadscala-991b50f3f440a631bfa1d76f79fdc31ccdbc3fdf.tar.gz
scala-991b50f3f440a631bfa1d76f79fdc31ccdbc3fdf.tar.bz2
scala-991b50f3f440a631bfa1d76f79fdc31ccdbc3fdf.zip
Fix for SI-6084, type alias crasher.
"no need for pt.normalize here, is done in erasure" ORLY? Review by @adriaanm.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Typers.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Typers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Typers.scala b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
index b1c3249e35..69e4b5c102 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -2277,7 +2277,7 @@ trait Typers extends Modes with Adaptations with Tags {
// but not in real life (i.e., now that's we've reset the method's type skolems'
// infos back to their pre-GADT-constraint state)
if (isFullyDefined(pt) && !(body1.tpe <:< pt))
- body1 = typedPos(body1.pos)(gen.mkCast(body1, pt))
+ body1 = typedPos(body1.pos)(gen.mkCast(body1, pt.normalize))
}