mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
149 B
Solidity
7 lines
149 B
Solidity
contract C {
|
|
using {f} for uint global;
|
|
}
|
|
function f(uint) pure{}
|
|
// ----
|
|
// SyntaxError 3367: (17-43): "global" can only be used at file level.
|