solidity/test/libsolidity/semanticTests/isoltestTesting/storage/storage_nonempty.sol
2022-05-19 20:23:28 +02:00

9 lines
164 B
Solidity

contract StorageNotEmpty {
uint256 x;
function set(uint256 _a) public { x = _a; }
}
// ----
// storageEmpty -> 1
// set(uint256): 1 ->
// storageEmpty -> 0