* arm.md (stack_tie): New insn. Use an idiom that the alias code
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb63.C
blobf786e707923b6262a0cc4206001c51e989de7f35
1 //Special g++ Options:
2 //This uses GNU extensions, so disable -ansi
3 #include <stdio.h>
4 #include <stdlib.h>
6 class A {
7 public:
8         A(bool b) { abort(); }
9         A(int a, bool b) { printf("cool\n"); }
12 main() {
13         A* a;
15         a = new A[2](1,false);