aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/structs/recursion/multi_struct_composition.sol
blob: 895bb6c585f683e4a0fe1c33ccb5a25e1eb995cb (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) public pure { }
}
// ----
// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments.