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

13 lines
177 B
Solidity

contract Foo {
function getX() public returns (uint256 r) {
return x;
}
uint256 constant x = 56;
}
// ====
// compileToEwasm: also
// ----
// getX() -> 56