| 1 | pub const omega = 3 // should be first |
| 2 | |
| 3 | pub const alpha = 5 // should be in the middle |
| 4 | |
| 5 | pub const beta = 2 // should be at the end |
| 6 | |
| 7 | // def - should be first |
| 8 | pub fn def() { |
| 9 | println(1) |
| 10 | } |
| 11 | |
| 12 | // xyz - should be in the middle |
| 13 | pub fn xyz() { |
| 14 | println(2) |
| 15 | } |
| 16 | |
| 17 | // abc - should be last |
| 18 | pub fn abc() { |
| 19 | println(3) |
| 20 | } |
| 21 |