mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
238 B
Solidity
18 lines
238 B
Solidity
contract C
|
|
{
|
|
function f() public pure {
|
|
if (true) {
|
|
address a = g();
|
|
assert(a == address(0));
|
|
}
|
|
}
|
|
function g() public pure returns (address) {
|
|
address a;
|
|
a = address(0);
|
|
return a;
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|