Skip to content

Commit 2b41116

Browse files
committed
Polishing
1 parent ea86193 commit 2b41116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotty/tools/dotc/core/TypeApplications.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ object TypeApplications {
209209
}
210210
val app1: RefinedType => Type = rt => tp1.appliedTo(argRefs(rt, tparams1.length))
211211
val app2: RefinedType => Type = rt => tp2.appliedTo(argRefs(rt, tparams2.length))
212-
val body = (rt: RefinedType) => op(app1(rt), app2(rt))
212+
val body: RefinedType => Type = rt => op(app1(rt), app2(rt))
213213
TypeLambda(variances, bounds, body)
214214
}
215215
}

0 commit comments

Comments
 (0)