solidity/test/libsolidity/semanticTests/libraries/library_call_in_homestead.sol
2023-05-11 10:56:55 -05:00

14 lines
307 B
Solidity

library Lib { function m() public returns (address) { return msg.sender; } }
contract Test {
address public sender;
function f() public {
sender = Lib.m();
}
}
// ====
// EVMVersion: >=homestead
// ----
// library: Lib
// f() ->
// sender() -> 0x1212121212121212121212121212120000000012