solidity/test/libsolidity/syntaxTests/parsing/multiple_functions_natspec_documentation.sol

13 lines
467 B
Solidity
Raw Normal View History

2018-05-17 07:04:39 +00:00
contract test {
uint256 stateVar;
/// This is test function 1
function functionName1(bytes32 input) public returns (bytes32 out) {}
2018-05-17 07:04:39 +00:00
/// This is test function 2
function functionName2(bytes32 input) public returns (bytes32 out) {}
2018-05-17 07:04:39 +00:00
// nothing to see here
function functionName3(bytes32 input) public returns (bytes32 out) {}
2018-05-17 07:04:39 +00:00
/// This is test function 4
function functionName4(bytes32 input) public returns (bytes32 out) {}
2018-05-17 07:04:39 +00:00
}
// ----