solidity/test/libsolidity/natspecJSON/user_newline_break.sol

22 lines
260 B
Solidity
Raw Normal View History

contract test {
///
/// @notice hello
/// @notice world
function f() public {
}
}
// ----
// ----
// :test userdoc
// {
// "methods":
// {
// "f()":
// {
// "notice": "world"
// }
// }
// }