Skip to content

Commit 37200be

Browse files
committed
Cleanup
1 parent e611139 commit 37200be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/transform/Splicing.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class Splicing extends MacroTransform:
228228
else super.transform(tree)
229229
case CapturedApplication(fn, argss) =>
230230
transformCapturedApplication(tree, fn, argss)
231-
case Apply(sel @ Select(app @ Quote(body), nme.apply), quotes :: Nil) if level == 0 && body.isTerm =>
231+
case Apply(Select(Quote(body), nme.apply), quotes :: Nil) if level == 0 && body.isTerm =>
232232
body match
233233
case _: RefTree if isCaptured(body.symbol) => capturedTerm(body)
234234
case _ => withCurrentQuote(quotes) { super.transform(tree) }

0 commit comments

Comments
 (0)