solidity/test/libsolidity/natspecJSON/user_multiline_empty_lines.sol

32 lines
407 B
Solidity

contract test {
/**
*
*
* @notice hello world
*/
function f() public {
}
}
// ----
// ----
// :test devdoc
// {
// "kind": "dev",
// "methods": {},
// "version": 1
// }
//
// :test userdoc
// {
// "kind": "user",
// "methods":
// {
// "f()":
// {
// "notice": "hello world"
// }
// },
// "version": 1
// }