solidity/test/libsolidity/natspecJSON/user_newline_break.sol

24 lines
304 B
Solidity
Raw Normal View History

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