Merged trunk at revision 161680 into branch.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / ctors17.C
blob0d61c49abd79128266210297ade72921766d3144
1 // { dg-do assemble  }
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)
9 // C++0x mode doesn't print the deleted copy constructor as a candidate.
10 // { dg-prune-output ":14:" }
12 #include <fstream>
14 class X : public std::ifstream {
15     public:
16       X(int a, const char *b) {} // { dg-message "note" } candidate
18 int main()
20     X *y = new X(10, "123");
21     // the compiler must reject this constructor call:
22     X *x = new X("abc");// { dg-error "match" }