solidity/test/libsolidity/semanticTests/constants/simple_constant_variables_test.sol
2023-05-11 10:56:55 -05:00

10 lines
144 B
Solidity

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