1 /* { dg-require-alias "" } */
2 void bar (void);
foo(void)3 static void foo (void) { bar (); }
4 void bar (void) __attribute__((alias("foo")));
5