solidity/test/cmdlineTests/yul_unimplemented/input.sol

9 lines
149 B
Solidity
Raw Normal View History

2020-09-14 17:08:28 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
contract test {
2020-09-18 12:05:24 +00:00
bytes a;
bytes b;
2020-09-18 12:05:24 +00:00
function f() public {
a = b;
2020-09-14 17:08:28 +00:00
}
}