mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
dbb24484e9
Co-authored-by: Kamil Śliwak <kamil.sliwak@codepoets.it>
17 lines
366 B
Solidity
17 lines
366 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);
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() ->
|