OSDN Git Service

* toplev.c (warn_deprecated_use): Correct logic for saying "type"
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / attr-alias-1.c
1 /* PR c++/12795 */
2 /* { dg-require-alias "" } */
3
4 void foo()
5 {
6   extern void bar () __attribute__ ((__alias__ ("BAR"))); /* { dg-warning "ignored" } */
7   bar ();
8 }