solidity/test/libsolidity/semanticTests/extracted/simple_constant_variables_test.sol
2020-03-18 11:56:43 -05:00

11 lines
145 B
Solidity

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