We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dbb700 commit 592dd32Copy full SHA for 592dd32
plugin/src/main/scala/plugin/CommonPhase.scala
@@ -224,7 +224,7 @@ abstract class CommonPhase extends PluginPhase:
224
225
def hasNestedMemberCond(f: Type => Boolean)(using Context): Boolean =
226
def recur(tpe: Type): Boolean =
227
- tpe match
+ tpe.dealias match
228
case tpe if f(tpe) => true
229
case rt: RefinedType => recur(rt.refinedInfo) || recur(rt.parent)
230
case rt: RecType => recur(rt.parent)
0 commit comments