mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
467 B
Solidity
13 lines
467 B
Solidity
contract test {
|
|
uint256 stateVar;
|
|
/// This is test function 1
|
|
function functionName1(bytes32 input) public returns (bytes32 out) {}
|
|
/// This is test function 2
|
|
function functionName2(bytes32 input) public returns (bytes32 out) {}
|
|
// nothing to see here
|
|
function functionName3(bytes32 input) public returns (bytes32 out) {}
|
|
/// This is test function 4
|
|
function functionName4(bytes32 input) public returns (bytes32 out) {}
|
|
}
|
|
// ----
|