solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/439_warn_unused_return_parameter.sol

7 lines
190 B
Solidity
Raw Normal View History

contract C {
function f() pure public returns (uint a) {
}
}
// ----
// Warning: (51-57): Unused function parameter. Remove or comment out the variable name to silence this warning.