2011-10-14 06:29:44 +08:00
|
|
|
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
|
2011-02-06 03:23:19 +08:00
|
|
|
|
|
|
|
struct B1 {
|
|
|
|
B1(int);
|
|
|
|
B1(int, int);
|
|
|
|
};
|
|
|
|
struct D1 : B1 {
|
|
|
|
using B1::B1;
|
|
|
|
};
|
|
|
|
D1 d1a(1), d1b(1, 1);
|
|
|
|
|
|
|
|
D1 fd1() { return 1; }
|
|
|
|
|
|
|
|
struct B2 {
|
|
|
|
explicit B2(int, int = 0, int = 0);
|
|
|
|
};
|
2011-08-31 03:58:05 +08:00
|
|
|
struct D2 : B2 { // expected-note 2 {{candidate constructor}}
|
2011-02-06 03:23:19 +08:00
|
|
|
using B2::B2;
|
|
|
|
};
|
|
|
|
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}}
|
|
|
|
};
|
2011-08-31 03:58:05 +08:00
|
|
|
struct D3 : B3 { // expected-note 2 {{candidate constructor}}
|
2011-02-06 03:23:19 +08:00
|
|
|
using B3::B3; // expected-note {{candidate constructor (inherited)}}
|
|
|
|
};
|
|
|
|
D3 fd3() { return 1; } // expected-error {{no viable conversion}}
|