Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 394 Bytes

unused_private_declaration.md

File metadata and controls

24 lines (15 loc) · 394 Bytes

Pattern: Unused private declaration

Issue: -

Description

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

Further Reading