blob: 9d09c8187751c5a63e984f718a936c4283873ad1 [file] [log] [blame]
Alexander Shaposhnikovbf3c84c2016-09-02 02:56:07 +00001// RUN: clang-reorder-fields -record-name Foo -fields-order z,y,x %s -- | FileCheck %s
2
3// The order of fields should not change.
4class Foo {
5public:
6 int x; // CHECK: {{^ int x;}}
7 int y; // CHECK-NEXT: {{^ int y;}}
8 int z; // CHECK-NEXT: {{^ int z;}}
9};
10
11int main() {
12 Foo foo = { 0, 1 }; // CHECK: {{^ Foo foo = { 0, 1 };}}
13 return 0;
14}