blob: b1e18dd33a2bf2b745527082f3fbf734e3a17d53 [file] [log] [blame]
/* { dg-do compile } */
struct Vector
{
double _x, _y;
};
typedef Vector Point;
Vector d;
static inline Vector f(void)
{
return d;
}
void add_duck (void)
{
new Point (f());
}