1 // RUN: clang-reorder-fields -record-name Foo -fields-order z,y,x %s -- | FileCheck %s
3 // The order of fields should not change.
6 int x
; // CHECK: {{^ int x;}}
7 int y
; // CHECK-NEXT: {{^ int y;}}
8 int z
; // CHECK-NEXT: {{^ int z;}}
12 Foo foo
= { 0, 1 }; // CHECK: {{^ Foo foo = { 0, 1 };}}