aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/524_accept_library_creation.sol
blob: 6a5e97af848d3a9b35cc0af5f63b76ed8636d569 (plain) (tree)
1
2
3
4
5
6





                         
library L {}
contract C {
    function f() public {
        new L();
    }
}