diff options
Diffstat (limited to 'test/Format/disable-include-sorting.cpp')
-rw-r--r-- | test/Format/disable-include-sorting.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Format/disable-include-sorting.cpp b/test/Format/disable-include-sorting.cpp new file mode 100644 index 0000000..875a0af --- /dev/null +++ b/test/Format/disable-include-sorting.cpp @@ -0,0 +1,10 @@ +// RUN: clang-format %s | FileCheck %s +// RUN: clang-format %s -sort-includes -style="{SortIncludes: false}" | FileCheck %s +// RUN: clang-format %s -sort-includes=false | FileCheck %s -check-prefix=NOT-SORTED + +#include <b> +#include <a> +// CHECK: <a> +// CHECK-NEXT: <b> +// NOT-SORTED: <b> +// NOT-SORTED-NEXT: <a> |