solidity/test/libsolidity/syntaxTests/using/using_library_ast_file_level.sol
2022-04-01 23:41:18 -05:00

5 lines
156 B
Solidity

library L { }
using L for *;
// ----
// SyntaxError 8118: (14-28='using L for *;'): The type has to be specified explicitly at file level (cannot use '*').