Skip to content

Commit

Permalink
Closes t5121. Review by szeiger.
Browse files Browse the repository at this point in the history
  • Loading branch information
odersky committed Oct 28, 2011
1 parent eb2d18b commit 49f352d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/compiler/scala/tools/nsc/transform/LiftCode.scala
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,9 @@ abstract class LiftCode extends Transform with TypingTransformers {
case t @ RefinedType(parents, decls) =>
registerReifiableSymbol(tpe.typeSymbol)
mirrorFactoryCall(t, reify(parents), reify(decls), reify(t.typeSymbol))
case t @ ClassInfoType(parents, decls, clazz) =>
registerReifiableSymbol(clazz)
mirrorFactoryCall(t, reify(parents), reify(decls), reify(t.typeSymbol))
case t @ ExistentialType(tparams, underlying) =>
reifyTypeBinder(t, tparams, underlying)
case t @ PolyType(tparams, underlying) =>
Expand Down

0 comments on commit 49f352d

Please sign in to comment.