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 ea86193 commit 2b41116Copy full SHA for 2b41116
src/dotty/tools/dotc/core/TypeApplications.scala
@@ -209,7 +209,7 @@ object TypeApplications {
209
}
210
val app1: RefinedType => Type = rt => tp1.appliedTo(argRefs(rt, tparams1.length))
211
val app2: RefinedType => Type = rt => tp2.appliedTo(argRefs(rt, tparams2.length))
212
- val body = (rt: RefinedType) => op(app1(rt), app2(rt))
+ val body: RefinedType => Type = rt => op(app1(rt), app2(rt))
213
TypeLambda(variances, bounds, body)
214
215
0 commit comments