solidity/test/libsolidity/syntaxTests/controlFlow/unreachableCode/comment_fine.sol
2019-01-10 10:36:50 +01:00

7 lines
99 B
Solidity

contract C {
function f() public pure {
return;
// unreachable comment
}
}