solidity/test/libsolidity/natspecJSON/dev_constructor.sol

23 lines
598 B
Solidity

contract test {
/// @param a the parameter a is really nice and very useful
/// @param second the second parameter is not very useful, it just provides additional confusion
constructor(uint a, uint second) { }
}
// ----
// ----
// :test devdoc
// {
// "methods":
// {
// "constructor":
// {
// "params":
// {
// "a": "the parameter a is really nice and very useful",
// "second": "the second parameter is not very useful, it just provides additional confusion"
// }
// }
// }
// }