solidity/test/libsolidity/semanticTests/constants/simple_constant_variables_test.sol
2020-03-19 14:42:25 +01:00

11 lines
145 B
Solidity

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