From 991b50f3f440a631bfa1d76f79fdc31ccdbc3fdf Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 30 Jul 2012 09:13:16 -0700 Subject: Fix for SI-6084, type alias crasher. "no need for pt.normalize here, is done in erasure" ORLY? Review by @adriaanm. --- src/compiler/scala/tools/nsc/typechecker/Typers.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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)) } -- cgit v1.2.3