mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
210 B
Solidity
10 lines
210 B
Solidity
|
contract C {
|
||
|
function foo() public pure { D; }
|
||
|
}
|
||
|
contract D {
|
||
|
function foo() public pure { C; }
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 6133: (43-44): Statement has no effect.
|
||
|
// Warning 6133: (93-94): Statement has no effect.
|