All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Extra parentheses increase expression nesting without adding meaning. They make code harder to read.
Remove extra parentheses if any.
fn xy() { ((2, 3)) }
fn xy() { (2, 3) }