solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/437_warn_unused_function_parameter.sol

7 lines
179 B
Solidity
Raw Normal View History

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