mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
237 B
Solidity
13 lines
237 B
Solidity
contract C {
|
|
function test() public view returns (bool) {
|
|
address x;
|
|
assembly { x := caller() }
|
|
return x == msg.sender;
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// test() -> true
|