mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
328 B
Solidity
10 lines
328 B
Solidity
contract test {
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
/// @param a Documentation for the first parameter
|
|
/// @param se
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
|
}
|
|
|
|
// ----
|
|
// DocstringParsingError 9942: (20-152): No description given for param se
|