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