diff options
Diffstat (limited to 'clang/test/PCH/chain-cxx.cpp')
-rw-r--r-- | clang/test/PCH/chain-cxx.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/test/PCH/chain-cxx.cpp b/clang/test/PCH/chain-cxx.cpp index 450a7918286..3e46214c70b 100644 --- a/clang/test/PCH/chain-cxx.cpp +++ b/clang/test/PCH/chain-cxx.cpp @@ -19,5 +19,10 @@ void test() { ns::pg(); ns::g2(); - //typedef S<int>::I J; + typedef S<double>::G T1; + typedef S<double *>::H T2; + typedef S<int>::I T3; + typedef S<double &>::J T4; + typedef S<int *>::K T5; + typedef S<int &>::L T6; } |