diff options
Diffstat (limited to 'test/CXX/special/class.inhctor/p3.cpp')
-rw-r--r-- | test/CXX/special/class.inhctor/p3.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CXX/special/class.inhctor/p3.cpp b/test/CXX/special/class.inhctor/p3.cpp index 989c17c..f71ab16 100644 --- a/test/CXX/special/class.inhctor/p3.cpp +++ b/test/CXX/special/class.inhctor/p3.cpp @@ -28,3 +28,21 @@ struct D3 : B3 { // expected-note 2 {{candidate constructor}} using B3::B3; // expected-note {{candidate constructor (inherited)}} }; D3 fd3() { return 1; } // expected-error {{no viable conversion}} + +template<typename T> struct T1 : B1 { + using B1::B1; +}; +template<typename T> struct T2 : T1<T> { + using T1<int>::T1; +}; +template<typename T> struct T3 : T1<int> { + using T1<T>::T1; +}; +struct U { + friend T1<int>::T1(int); + friend T1<int>::T1(int, int); + friend T2<int>::T2(int); + friend T2<int>::T2(int, int); + friend T3<int>::T3(int); + friend T3<int>::T3(int, int); +}; |