2020-11-23 18:06:44 +00:00
|
|
|
pragma abicoder v2;
|
2018-03-15 18:07:25 +00:00
|
|
|
|
|
|
|
contract C {
|
|
|
|
struct T { U u; V v; }
|
|
|
|
|
|
|
|
struct U { W w; }
|
|
|
|
|
|
|
|
struct V { W w; }
|
|
|
|
|
|
|
|
struct W { uint x; }
|
|
|
|
|
2018-07-12 01:24:50 +00:00
|
|
|
function f(T memory) public pure { }
|
2018-03-15 18:07:25 +00:00
|
|
|
}
|
|
|
|
// ----
|