solidity/test/libsolidity/syntaxTests/parsing/else_if_statement.sol
2020-01-08 16:12:06 +01:00

8 lines
235 B
Solidity

contract test {
function fun(uint256 a) public returns (uint8 b) {
if (a < 0) b = 0x67; else if (a == 0) b = 0x12; else b = 0x78;
}
}
// ----
// Warning: (20-147): Function state mutability can be restricted to "pure".