solidity/test/libsolidity/semanticTests/constants/constant_variables.sol
2022-05-19 20:23:28 +02:00

12 lines
267 B
Solidity

contract Foo {
uint256 constant x = 56;
enum ActionChoices {GoLeft, GoRight, GoStraight, Sit}
ActionChoices constant choices = ActionChoices.GoLeft;
bytes32 constant st = "abc\x00\xff__";
}
// ====
// compileToEwasm: also
// ----
// constructor() ->