6020b5f3b2aaa13446c69f76ae42357749c2fcfc
[nit.git] / tests / sav / test_deriving.res
1 <A i: <Int> s: <FlatString>>
2 i=5 s=Hello
3 i:5; s:Hello
4
5 true
6 true
7 true
8
9 <B i: <Int> s: <FlatString> a: <A i: <Int> s: <FlatString>>>
10 i=100 s=World a=i:5; s:Hello
11 i:100; s:World; a:i:5; s:Hello
12
13 true
14 true
15 true