solidity/test/libsolidity/syntaxTests/parsing/else_if_statement.sol

9 lines
299 B
Solidity
Raw Normal View History

2018-05-17 07:04:39 +00:00
contract test {
function fun(uint256 a) returns (address b) {
if (a < 0) b = 0x67; else if (a == 0) b = 0x12; else b = 0x78;
}
}
// ----
// Warning: (20-142): No visibility specified. Defaulting to "public".
// Warning: (20-142): Function state mutability can be restricted to pure