v2 / cmd / tools / vdoc / testdata / unsorted / main.unsorted.out
11 lines · 10 sloc · 242 bytes · 8eaaba6094456bb21833fddf20d22514e7dadcb2
Raw
1module main
2
3const omega = 3 // should be first
4const alpha = 5 // should be in the middle
5const beta = 2 // should be at the end
6fn def()
7 def - should be first
8fn xyz()
9 xyz - should be in the middle
10fn abc()
11 abc - should be last
12