summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cs/sort_using.cs
blob: 881b4d5b56dd6b8854d56a20be4b80ab148d039c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// should be ddd, eee, fff
using b.ddd;
using b.fff;
using b.eee;

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

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

void foo();