OSDN Git Service

* gcc.dg/lto/ipacp_0.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / deprecated-5.c
1 /* Test __attribute__((deprecated)).  Test types without names.  */
2 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
5
6 struct { int a; } __attribute__((deprecated ("Do not use"))) x; /* { dg-warning "type is deprecated" } */
7 typeof(x) y; /* { dg-warning "type is deprecated .declared at .*.: Do not use" } */