Version 0.22.0
Using enums with named associated values in a switch-case generates an incorrect warning.
Example:
case .someCase(let title, _, let subtitle):
generates a pattern_matching_keywords warning
This is correct, you should use this instead:
case let .someCase(title, _, subtitle):
Seems to work. Sorry for the inconvenience and thanks for the fast reply!
Most helpful comment
This is correct, you should use this instead: