aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/structs/recursion/multi_struct_composition.sol
blob: e8ece3bc902182bc8d14d542361900d1bf5af947 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pragma experimental ABIEncoderV2;

contract C {
  struct T { U u; V v; }

  struct U { W w; }

  struct V { W w; }

  struct W { uint x; }

  function f(T memory) public pure { }
}
// ----
// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments.