solidity/test/libsolidity/syntaxTests/controlFlow/unreachableCode/comment_fine.sol
2021-04-20 17:38:29 +02:00

8 lines
107 B
Solidity

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