OSDN Git Service

* g++.old-deja/g++.mike/eh33.C: Remove xfail for hppa*-*-*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb32.C
1 // Build don't link:
2 class A {
3 public:
4     void malloc(unsigned int);
5 };
6
7 void A::malloc(unsigned int) {}
8
9 void foo() {
10     A a;
11     a.malloc(3);    // <-- line 10
12 }