summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/d/sort_import.d
blob: d929f8e8bf74ebcb790444091c3dda9acb05fa9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// should be ddd, eee, fff
import ddd;
import fff;
import eee;

// should be aaa, ccc
import ccc;
import aaa;
// should be just bbb
import bbb;

// should not change these, as it can't handle multi-line imports
private import mango.ccc;
private import mango.bbb,
               mango.aaa;

void foo();