1*f625a8a2SRafael Stahl // RUN: clang-format %s -style=LLVM | FileCheck %s
2da446770SDaniel Jasper // RUN: clang-format %s -sort-includes -style="{SortIncludes: false}" | FileCheck %s
3da446770SDaniel Jasper // RUN: clang-format %s -sort-includes=false | FileCheck %s -check-prefix=NOT-SORTED
4da446770SDaniel Jasper 
5da446770SDaniel Jasper #include <b>
6da446770SDaniel Jasper #include <a>
7da446770SDaniel Jasper // CHECK: <a>
8da446770SDaniel Jasper // CHECK-NEXT: <b>
9da446770SDaniel Jasper // NOT-SORTED: <b>
10da446770SDaniel Jasper // NOT-SORTED-NEXT: <a>
11