blob: 37763697cbffa8cb815b6e8d4dc9a4990c6d198b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
contract test {
function fun(uint256 a) returns (uint8 b) {
if (a < 0) b = 0x67; else if (a == 0) b = 0x12; else b = 0x78;
}
}
// ----
// Warning: (20-140): No visibility specified. Defaulting to "public".
// Warning: (20-140): Function state mutability can be restricted to pure
|