2019-03-18 10:21:41 +00:00
|
|
|
contract C {
|
|
|
|
function f(address a) public pure returns (address x) {
|
|
|
|
address b = a;
|
|
|
|
x = b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// compileViaYul: true
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2019-03-18 10:21:41 +00:00
|
|
|
// ----
|
|
|
|
// f(address): 0x1234 -> 0x1234
|