All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
AVOID using a parameter name that is the same as an existing type.
BAD:
m(f(int));
GOOD:
m(f(int v));