solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid_natspec.sol
Daniel Kirchner 6b6e163be5 Tests.
2022-03-02 16:42:28 +01:00

15 lines
407 B
Solidity

contract C {
function f() public pure {
/// @test test
assembly {}
/// @solidity test
assembly {}
/// @param
assembly {}
}
}
// ----
// Warning 6269: (60-71): Unexpected NatSpec tag "test" with value "test" in inline assembly.
// Warning 8787: (95-106): Unexpected value for @solidity tag in inline assembly: test
// Warning 7828: (122-133): Inline assembly has invalid NatSpec documentation.