solidity/test/libsolidity/semanticTests/isoltestTesting/storage/storage_nonempty.sol
2021-04-28 16:19:05 +02:00

11 lines
195 B
Solidity

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