solidity/test/libsolidity/syntaxTests/using/using_functions_with_ast.sol

8 lines
170 B
Solidity
Raw Normal View History

2021-10-11 08:16:52 +00:00
function f(uint) {}
contract C {
using {f} for *;
}
// ----
// SyntaxError 3349: (38-54): The type has to be specified explicitly when attaching specific functions.