aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/controlFlow/unreachableCode/comment_fine.sol
blob: 17119ca60d2a693ce1ef5010a1bb16497409af79 (plain) (blame)
1
2
3
4
5
6
contract C {
    function f() public pure {
        return;
        // unreachable comment
    }
}