blob: 40aaa9170b7e9002868837d0dd73ad6e98eb3561 (
plain) (
tree)
|
|
contract A {
function f() public {
uint x = true ? 1 : 0;
uint y = false ? 0 : 1;
}
}
// ----
// Warning: (47-53): Unused local variable.
// Warning: (78-84): Unused local variable.
// Warning: (17-107): Function state mutability can be restricted to pure
|