mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
43 lines
1.3 KiB
Solidity
43 lines
1.3 KiB
Solidity
contract C {
|
|
struct S { bool f; }
|
|
S s;
|
|
function ext() external {}
|
|
function f() internal
|
|
{
|
|
S storage r;
|
|
try this.ext() { }
|
|
catch (bytes memory) { r = s; }
|
|
r;
|
|
}
|
|
function g() internal
|
|
{
|
|
S storage r;
|
|
try this.ext() { r = s; }
|
|
catch (bytes memory) { }
|
|
r;
|
|
}
|
|
function h() internal
|
|
{
|
|
S storage r;
|
|
try this.ext() {}
|
|
catch Error (string memory) { r = s; }
|
|
catch (bytes memory) { r = s; }
|
|
r;
|
|
}
|
|
function i() internal
|
|
{
|
|
S storage r;
|
|
try this.ext() { r = s; }
|
|
catch (bytes memory) { r; }
|
|
r = s;
|
|
r;
|
|
}
|
|
}
|
|
// ====
|
|
// EVMVersion: >=byzantium
|
|
// ----
|
|
// TypeError 3464: (206-207): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|
|
// TypeError 3464: (343-344): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|
|
// TypeError 3464: (526-527): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|
|
// TypeError 3464: (653-654): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|