Pattern: Unused private declaration
Issue: -
Private declarations should be referenced in that file.
Examples of correct code:
private let kConstant = 0
_ = kConstant
Examples of incorrect code:
private let ↓kConstant = 0
Pattern: Unused private declaration
Issue: -
Private declarations should be referenced in that file.
Examples of correct code:
private let kConstant = 0
_ = kConstant
Examples of incorrect code:
private let ↓kConstant = 0