summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/oc/50034-sort_import.m
blob: f8a42242f114359655d44ece77518b6cea432da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// should be ddd, eee, fff
#import "ddd"
#import "eee"
#import "fff"

#import "aaa"
#import "ccc"
// should be just bbb
#import "bbb"

#import "sort_import+internal.h"
#import "sort_import+public.h"
#import "sort_import.h"

#import <UIKit/UIKit.h>
#import "Action+Internal.h"
#import "Action+Public.h"
#import "Action.h"

#include "Test+Internal.h"
#include "Test.h"

#import "Something.h"
#import "Something_Internal.h"
#import "Something_Public.h"

#import <KKK>
#import "AAA"
#import "BBB.h"
#include "CCC.h"
#include "DDD"
#import "EEE.h"