mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
341 B
Solidity
13 lines
341 B
Solidity
|
contract A {
|
||
|
function f() mod internal returns (uint[] storage) {
|
||
|
revert();
|
||
|
}
|
||
|
function g() mod internal returns (uint[] storage) {
|
||
|
}
|
||
|
modifier mod() virtual {
|
||
|
_;
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// TypeError 3464: (118-132): This variable is of storage pointer type and can be returned without prior assignment, which would lead to undefined behaviour.
|