solidity/test/cmdlineTests/abiencoderv2_no_warning/input.sol

10 lines
165 B
Solidity
Raw Normal View History

2020-05-13 01:52:11 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
2020-11-23 18:06:44 +00:00
pragma abicoder v2;
2020-05-13 01:52:11 +00:00
contract C {
struct S { uint x; }
function f(S memory) public pure {
}
}