Appearance
Source Code
Checks for functions that have the same argument name but prefix with _.
_
This code will raise a warning because it can be difficult to differentiate between test and _test.
test
_test
fn foo(test: u32, _test: u32) {}