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 a55a260 commit f532c9aCopy full SHA for f532c9a
src/dotty/tools/dotc/ast/untpd.scala
@@ -282,7 +282,7 @@ object untpd extends Trees.Instance[Untyped] with UntypedTreeInfo {
282
case TypedSplice(AppliedTypeTree(tycon, targs)) =>
283
(TypedSplice(tycon), targs map (TypedSplice(_)))
284
case TypedSplice(tpt1: Tree) =>
285
- val argTypes = tpt1.tpe.argTypes
+ val argTypes = tpt1.tpe.argTypesLo
286
val tycon = tpt1.tpe.withoutArgs(argTypes)
287
def wrap(tpe: Type) = TypeTree(tpe) withPos tpt.pos
288
(wrap(tycon), argTypes map wrap)
0 commit comments