summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10030-sort_using.cs
blob: 99e802c16e694baf89d3eb51b2da96d68b228980 (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.eee;
using b.fff;

// should be aaa, ccc
using aaa;
using ccc;
// 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();