unified: Add new MISSING marker in test

This commit is contained in:
Asger F
2026-07-29 13:07:56 +02:00
parent d827417f22
commit 3923effe64

View File

@@ -81,7 +81,7 @@ func t10(value: Int) { // name=value1
func t11(value: Int) { // name=value1
switch value { // $ access=value1
case let x where x > 0: // $ MISSING: access=x1 // name=x1
print(x) // $ access=x1
print(x) // $ MISSING: access=x1
case let x: // name=x2
print(x) // $ access=x2
}