Skip to content

Commit 1133ab6

Browse files
committed
Add missing case in factories
1 parent 78e80c8 commit 1133ab6

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)