aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr79732.c
blob: 7231ba4f1399ee117a16b68bbb6cbef2e89fc328 (plain)
1
2
3
4
5
/* { dg-do link } */

int bar () __attribute__ ((alias ("foo")));
void foo () { }
int main () { return bar(); }