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 9ed91cc commit f25bfb4Copy full SHA for f25bfb4
Sources/FileCheck/FileCheck.swift
@@ -567,7 +567,7 @@ private func check(
567
if options.contains(.scopedVariables) {
568
var localVariables = [String]()
569
localVariables.reserveCapacity(16)
570
- for (k, v) in variableTable where !k.hasPrefix("$") {
+ for k in variableTable.keys where !k.hasPrefix("$") {
571
localVariables.append(k)
572
}
573
0 commit comments