solidity/test/libsolidity/semanticTests/memoryManagement/assembly_access.sol
2022-05-19 20:23:28 +02:00

17 lines
367 B
Solidity

contract C {
function f() public pure {
uint[] memory x;
uint y;
assembly {
y := x
}
// The value of an uninitialized dynamic array is not zero but rather
// an address of a location in memory that has the value of zero.
assert(y != 0);
}
}
// ====
// compileToEwasm: also
// ----
// f() ->