mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
256 B
Solidity
9 lines
256 B
Solidity
contract C {
|
|
function f() internal returns (uint) {
|
|
(uint a) = f();
|
|
a;
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 6321: (46-50): Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.
|