2018-11-29 09:05:52 +00:00
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function suicide() public pure returns (bool) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
function f() public pure returns (bool) {
|
|
|
|
return suicide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 2319: (14-79): This declaration shadows a builtin symbol.
|