Skip to content

Commit 1efb41a

Browse files
committed
Add missing type case to render
1 parent 2697436 commit 1efb41a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

repl/src/dotty/tools/repl/render.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ object Rendering {
2626
case ConstantType(c) => ": " + c.value
2727
case tpe: ParamRef => ": " + tpe.paramName + ".type"
2828
case tpe: TypeRef => ": " + tpe.show
29+
case tpe: ExprType => ": " + tpe.resType.show
2930
case mt: MethodType =>
3031
val ps = mt.paramNames.zip(mt.paramInfos).map { (name, tpe) =>
3132
val tp = tpe match {

0 commit comments

Comments
 (0)