blob: 03c52a338c3eae9364e6899720d81bfcc17e4e75 [file] [log] [blame]
/* { dg-do compile } */
struct Foo { char c[1024]; };
void foo(void);
struct Foo baz(void) __attribute__((returns_twice));
struct Foo *p;
void bar(void)
{
foo();
*p = baz();
}