rm lib/core/collection/m.dot that was wrongly commited in 39fcf4a75aae
[nit.git] / tests / warn_par.nit
1
2 fun foo(): Int
3 do
4 if (true) then end
5 while (true) do break
6 for x in ([5]) do end
7 return (5)
8 end
9
10 var x = (foo())
11 print x