solidity/test/libsolidity/syntaxTests/array/invalid/library_index_access.sol
2022-04-01 23:41:18 -05:00

8 lines
181 B
Solidity

library C {
function f() view public {
C[0];
}
}
// ----
// TypeError 2876: (51-55='C[0]'): Index access for library types and arrays of libraries are not possible.