solidity/test/libsolidity/semanticTests/constants/simple_constant_variables_test.sol

14 lines
200 B
Solidity
Raw Normal View History

contract Foo {
function getX() public returns (uint256 r) {
return x;
}
uint256 constant x = 56;
}
2020-04-20 21:05:14 +00:00
// ====
// compileViaYul: also
// compileToEwasm: also
// ----
// getX() -> 56