Skip to content

Commit 7594483

Browse files
authored
Merge pull request #3157 from dotty-staging/fix-build
Add missing case in factories
2 parents 9d8fd61 + 1133ab6 commit 7594483

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

doc-tool/src/dotty/tools/dottydoc/model/factories.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ object factories {
120120

121121
case ref @ RefinedType(parent, rn, info) =>
122122
expandTpe(parent) //FIXME: will be a refined HK, aka class Foo[X] { def bar: List[X] } or similar
123+
124+
case ref: TypeArgRef =>
125+
expandTpe(ref.underlying)
123126
}
124127

125128
expandTpe(t)

0 commit comments

Comments
 (0)