Appearance
Source Code
Checks for comparison with identical operands.
fn foo(a: u256) -> bool { a == a }
Could be simplified by replacing the entire expression with true:
fn foo(a: u256) -> bool { true }