OSDN Git Service

* lib/g++-dg.exp (g++-dg-test): Add "repo" option.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.law / ctors17.C
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)
8
9
10 #include <fstream>
11
12 class X : public std::ifstream { // { dg-error "" } candidate
13     public:
14       X(int a, char *b) {} // { dg-error "" } candidate
15 };
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");// { dg-error "" } .*
21 }