blob: a70c8f9702f6d69a73b946fc3c6689fa49eaa603 [file] [log] [blame]
// { dg-do assemble }
class A {
public:
void malloc(unsigned int);
};
void A::malloc(unsigned int) {}
void foo() {
A a;
a.malloc(3); // <-- line 10
}