Skip to content

Commit 661f392

Browse files
committed
Fix typo
1 parent eec5732 commit 661f392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ object PatternMatcher {
529529
*/
530530
private def inlineLabelled(plan: Plan) = {
531531
val refCount = referenceCount(plan)
532-
def toDrop(sym: Symbol) = labelled.contains(sym) && refCount(symb) <= 1
532+
def toDrop(sym: Symbol) = labelled.contains(sym) && refCount(sym) <= 1
533533
def transform(plan: Plan): Plan = plan match {
534534
case plan: TestPlan =>
535535
plan.onSuccess = transform(plan.onSuccess)

0 commit comments

Comments
 (0)