solidity/test/libsolidity/syntaxTests/array/invalid/library_array.sol

9 lines
137 B
Solidity
Raw Normal View History

library L {}
contract C {
function f() public {
L[] memory x;
}
}
// ----
// TypeError 1130: (51-52): Invalid use of a library name.