Do not warn about enabled ABIEncoderV2 anymore.

This commit is contained in:
chriseth
2019-11-26 15:49:42 +01:00
parent a45eed6dbf
commit 0973ae751a
62 changed files with 31 additions and 67 deletions
@@ -0,0 +1,7 @@
pragma solidity >=0.0;
pragma experimental ABIEncoderV2;
contract C {
struct S { uint x; }
function f(S memory) public pure {
}
}