16 lines · cpp
1// RUN: clang-reorder-fields -record-name ::bar::Foo -fields-order y,x %s -- | FileCheck %s2 3namespace bar {4 5#define DEFINE_FOO6 7// This is okay to reorder.8#ifdef DEFINE_FOO9struct Foo {10 int x; // CHECK: {{^ int y;}}11 int y; // CHECK-NEXT: {{^ int x;}}12};13#endif14 15} // end namespace bar16