diff options
Diffstat (limited to 'clang/test/PCH/struct.h')
-rw-r--r-- | clang/test/PCH/struct.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/PCH/struct.h b/clang/test/PCH/struct.h index e3d85abaaeb..6c256221fa0 100644 --- a/clang/test/PCH/struct.h +++ b/clang/test/PCH/struct.h @@ -23,3 +23,7 @@ struct Fun { struct Fun2; struct Fun2 *fun2; + +struct S { + struct Nested { int x, y; } nest; +}; |