1 // RUN: clang-reorder-fields -record-name ::bar::Foo -fields-order z,w,y,x %s -- | FileCheck %s
5 const int* x
; // CHECK: {{^ double z;}}
6 int y
; // CHECK-NEXT: {{^ int w;}}
7 double z
; // CHECK-NEXT: {{^ int y;}}
8 int w
; // CHECK-NEXT: {{^ const int\* x}}
10 } // end namespace bar
14 bar::Foo foo
= { &x
, 0, 1.29, 17 }; // CHECK: {{^ bar::Foo foo = { 1.29, 17, 0, &x };}}