solidity/test/libsolidity/natspecJSON/dev_and_user_no_doc.sol

21 lines
297 B
Solidity

contract test {
function mul(uint a) public returns (uint d) {
return a * 7;
}
function sub(int input) public returns (int d) {
return input - 3;
}
}
// ----
// ----
// :test devdoc
// {
// "methods": {}
// }
//
// :test userdoc
// {
// "methods": {}
// }