Most trivial members.

This commit is contained in:
chriseth
2019-05-07 17:19:45 +02:00
parent b99ad2aaa3
commit acca390ef5
3 changed files with 187 additions and 6 deletions
@@ -0,0 +1,11 @@
contract C {
function test() public view returns (bool) {
address x;
assembly { x := caller() }
return x == msg.sender;
}
}
// ====
// compileViaYul: true
// ----
// test() -> true