mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
361 B
Solidity
18 lines
361 B
Solidity
|
library L
|
||
|
{
|
||
|
function iWillRevert() public pure { revert(); }
|
||
|
}
|
||
|
|
||
|
contract C
|
||
|
{
|
||
|
function test(bool _param) pure external returns(uint256)
|
||
|
{
|
||
|
if (_param) return 1;
|
||
|
|
||
|
L.iWillRevert();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ----
|
||
|
// Warning 6321: (128-135): Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.
|