From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/CXX/special/class.inhctor/p3.cpp | 48 +++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 clang/test/CXX/special/class.inhctor/p3.cpp (limited to 'clang/test/CXX/special/class.inhctor/p3.cpp') diff --git a/clang/test/CXX/special/class.inhctor/p3.cpp b/clang/test/CXX/special/class.inhctor/p3.cpp new file mode 100644 index 0000000..d7093fb --- /dev/null +++ b/clang/test/CXX/special/class.inhctor/p3.cpp @@ -0,0 +1,48 @@ +// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s + +struct B1 { + B1(int); + B1(int, int); +}; +struct D1 : B1 { + using B1::B1; // expected-error {{not supported}} +}; +D1 d1a(1), d1b(1, 1); + +D1 fd1() { return 1; } + +struct B2 { + explicit B2(int, int = 0, int = 0); +}; +struct D2 : B2 { // expected-note 2 {{candidate constructor}} + using B2::B2; // expected-error {{not supported}} +}; +D2 d2a(1), d2b(1, 1), d2c(1, 1, 1); + +D2 fd2() { return 1; } // expected-error {{no viable conversion}} + +struct B3 { + B3(void*); // expected-note {{inherited from here}} +}; +struct D3 : B3 { // expected-note 2 {{candidate constructor}} + using B3::B3; // expected-note {{candidate constructor (inherited)}} expected-error {{not supported}} +}; +D3 fd3() { return 1; } // expected-error {{no viable conversion}} + +template struct T1 : B1 { + using B1::B1; // expected-error {{not supported}} +}; +template struct T2 : T1 { + using T1::T1; // expected-error {{not supported}} +}; +template struct T3 : T1 { + using T1::T1; // expected-error {{not supported}} +}; +struct U { + friend T1::T1(int); + friend T1::T1(int, int); + friend T2::T2(int); + friend T2::T2(int, int); + friend T3::T3(int); + friend T3::T3(int, int); +}; -- cgit v1.2.3