aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb63.C
blob: f786e707923b6262a0cc4206001c51e989de7f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Special g++ Options:
//This uses GNU extensions, so disable -ansi
#include <stdio.h>
#include <stdlib.h>

class A {
public:
        A(bool b) { abort(); }
        A(int a, bool b) { printf("cool\n"); }
};

main() {
        A* a;

        a = new A[2](1,false);
}