solidity/test/libsolidity/semanticTests/isoltestTesting/storage/storage_nonempty.sol

11 lines
195 B
Solidity
Raw Normal View History

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