mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
344 B
Solidity
10 lines
344 B
Solidity
using L for uint global;
|
|
using L for uint[] global;
|
|
using L for function() returns (uint) global;
|
|
library L {
|
|
}
|
|
// ----
|
|
// TypeError 8841: (0-24): Can only use "global" with user-defined types.
|
|
// TypeError 8841: (25-51): Can only use "global" with user-defined types.
|
|
// TypeError 8841: (52-97): Can only use "global" with user-defined types.
|