blob: 3aee9b3605a4c27a28542129d8336bcd6a2fb9f1 [file] [log] [blame]
// { dg-do assemble }
// PRMS Id: 5124
// Bug: g++ promotes bar to int* too soon and the call to f fails.
typedef int arr[1];
struct A {
void f(void);
void f(arr &);
void g(void);
void g(int *);
void h(void);
};
void A::h(void)
{
arr bar;
f(bar);
g(bar);
}