I faced this issue when used the same constant names in a guard construction
let activityVC = ...
guard let activityVC = activityVC else { return }
But xcode didn’t show me any warning for this row.
I faced this issue when used the same constant names in a guard construction
let activityVC = ...
guard let activityVC = activityVC else { return }
But xcode didn’t show me any warning for this row.