mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
32 lines
736 B
Solidity
32 lines
736 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
|
|
// {
|
|
// "kind": "dev",
|
|
// "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"
|
|
// }
|
|
// }
|
|
// },
|
|
// "version": 1
|
|
// }
|
|
//
|
|
// :test userdoc
|
|
// {
|
|
// "kind": "user",
|
|
// "methods": {},
|
|
// "version": 1
|
|
// }
|