solidity/test/libsolidity/syntaxTests/controlFlow/unreachableCode/comment_fine.sol

7 lines
99 B
Solidity
Raw Normal View History

2019-01-08 18:33:46 +00:00
contract C {
function f() public pure {
return;
// unreachable comment
}
}