diff options
Diffstat (limited to 'test/CXX/temp/temp.param/p15-cxx0x.cpp')
-rw-r--r-- | test/CXX/temp/temp.param/p15-cxx0x.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CXX/temp/temp.param/p15-cxx0x.cpp b/test/CXX/temp/temp.param/p15-cxx0x.cpp index 0ce6699..f4be5b9 100644 --- a/test/CXX/temp/temp.param/p15-cxx0x.cpp +++ b/test/CXX/temp/temp.param/p15-cxx0x.cpp @@ -20,3 +20,5 @@ void f(const X<int> x) { X<X<int>> *x1; } +template<typename T = void> struct X1 { }; +X1<X1<>> x1a; |