solidity/test/libsolidity/syntaxTests/functionCalls/new_library.sol

9 lines
141 B
Solidity
Raw Normal View History

library L {}
contract C {
function f() public pure {
new L();
}
}
// ----
// TypeError 1130: (63-64): Invalid use of a library name.