rt_gccstream/gcc/testsuite/g++.old-deja/g++.robertl/eb32.C

13 lines
168 B
C

// { dg-do assemble }
class A {
public:
void malloc(unsigned int);
};
void A::malloc(unsigned int) {}
void foo() {
A a;
a.malloc(3); // <-- line 10
}