solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/446_no_unused_warning_abstract_arguments.sol

6 lines
141 B
Solidity
Raw Normal View History

contract C {
function f(uint a) pure public returns (uint b);
}
2019-10-23 20:10:12 +00:00
// ----
// TypeError: (0-67): Contract "C" should be marked as abstract.