1 // Build don't link:
2 // GROUPS passed constructors
3 // ctor file
4 // Message-Id: <199306151813.gD28471@mail.Germany.EU.net>
5 // From: stephan@ifconnection.de (Stephan Muehlstrasser)
6 // Subject: gcc 2.4.3.1: illegal constructor call not rejected
7 // Date: Tue, 15 Jun 1993 18:34:14 +0200 (MET DST)
8 
9 
10 #include <fstream>
11 
12 class X : public std::ifstream { // ERROR - candidate
13     public:
X(int a,char * b)14       X(int a, char *b) {} // ERROR - candidate
15 };
main()16 int main()
17 {
18     X *y = new X(10, "123");
19     // the compiler must reject this constructor call:
20     X *x = new X("abc");// ERROR - .*
21 }
22