blob: 7350da39fa0346a79b3d5f3c6a23ac23381a1cd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
contract C
{
function suicide() public pure returns (bool) {
return true;
}
function f() public pure returns (bool) {
return suicide();
}
}
// ----
// Warning: (14-79): This declaration shadows a builtin symbol.
|