[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / clang-tools-extra / test / clang-reorder-fields / AggregatePartialInitialization.cpp
blob9d09c8187751c5a63e984f718a936c4283873ad1
1 // RUN: clang-reorder-fields -record-name Foo -fields-order z,y,x %s -- | FileCheck %s
3 // The order of fields should not change.
4 class Foo {
5 public:
6 int x; // CHECK: {{^ int x;}}
7 int y; // CHECK-NEXT: {{^ int y;}}
8 int z; // CHECK-NEXT: {{^ int z;}}
9 };
11 int main() {
12 Foo foo = { 0, 1 }; // CHECK: {{^ Foo foo = { 0, 1 };}}
13 return 0;