aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/tests/repl/chained_fields/d.repl.skip
blob: cf33384c62884632d79970e984bbd750db2fb6ff (plain)
1
2
3
4
5
struct Aaa { mut: v int }  struct Bbb { a Aaa }  struct Ccc { mut: b Bbb } struct Ddd { mut: c Ccc }
mut d := Ddd{} d.c.b = Bbb{}
'OK'
===output===
OK