solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/297_library_functions_do_not_have_value.sol

9 lines
222 B
Solidity
Raw Normal View History

library L { function l() public {} }
contract test {
function f() public {
L.l.value;
}
}
// ----
// TypeError 8477: (87-96): Member "value" is not allowed in delegated calls due to "msg.value" persisting.