Appearance
Source Code
Checks for bitwise operation with identical operands.
fn foo(a: u256) -> u256 { a & a }
Could be simplified by replacing the entire expression with the operand:
fn foo(a: u256) -> u256 { a }