Skip to content

Commit

Permalink
2.13 bug workaround scala/bug#11673
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Aug 9, 2019
1 parent 4ace315 commit dc71861
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -234,7 +234,7 @@ final class LightTypeTagImpl[U <: Universe with Singleton](val u: U, logger: Tri
val current = Seq(tpe, tpe.dealias.resultType)
inh ++= current

val more = tpe.etaExpand.resultType.dealias.typeArgs.flatMap(_.dealias.resultType.typeSymbol.typeSignature match {
val more = tpe.dealias.resultType.typeArgs.flatMap(_.dealias.resultType.typeSymbol.typeSignature match {
case t: TypeBoundsApi =>
Seq(t.hi, t.lo)
case _ =>
Expand Down

0 comments on commit dc71861

Please sign in to comment.