Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / test_multi_init_user.nit
1 import test_multi_init
2
3 class D
4 super A
5 super B
6
7 init ( s : String, i : Int )
8 do
9 a(s)
10 b(i)
11 end
12
13 redef fun to_s do return "{s} {i}"
14 end
15
16 var c = new D( "allo", 1234 )
17 print c