aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/function_normal_comments.sol
blob: 231be9c2b1cf81947eef7e6c297e05d15262a486 (plain) (blame)
1
2
3
4
5
6
contract test {
    uint256 stateVar;
    // We won't see this comment
    function functionName(bytes32 input) public returns (bytes32 out) {}
}
// ----