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

10 lines
324 B
Solidity
Raw Normal View History

2018-05-17 07:04:39 +00:00
contract test {
function fun(uint256 a) returns (uint) {
if (a >= 8) { return 2; } else { uint b = 7; }
2018-05-17 07:04:39 +00:00
}
}
// ----
// Warning: (20-121): No visibility specified. Defaulting to "public".
// Warning: (102-108): Unused local variable.
// Warning: (20-121): Function state mutability can be restricted to pure