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

6 lines
225 B
Solidity
Raw Normal View History

using L for * global;
library L {}
// ----
// SyntaxError 8118: (0-21): The type has to be specified explicitly at file level (cannot use '*').
// SyntaxError 2854: (0-21): Can only globally bind functions to specific types.