1/* { dg-do run } */
2
3extern int foo(void) __attribute__((alias("bar_b")));
4
5int bar_b(void) {
6    return 1;
7}
8