1 /* { dg-do compile } */
2 /* { dg-skip-if "" { alias } } */
3 
4 extern int foo __attribute__((alias("bar"))); /* { dg-error "supported" } */
main()5 int main()
6 {
7   return 0;
8 }
9