diff options
Diffstat (limited to 'clang-tools-extra/test/clang-move/Inputs/multiple_class_test.h')
-rw-r--r-- | clang-tools-extra/test/clang-move/Inputs/multiple_class_test.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.h b/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.h index cedb8d58b0c..113a26154ee 100644 --- a/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.h +++ b/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.h @@ -23,6 +23,15 @@ public: int f(); }; +class EnclosingMove5 { +public: + class Nested { + int f(); + static int b; + }; + static int a; +}; + class NoMove { public: int f(); |