tree: Don't reuse types if TYPE_USER_ALIGN differ [PR94775]
[official-gcc.git] / gcc / testsuite / g++.dg / warn / deprecated-3.C
blobb65beb15bc6c84a294a8a1d9708b10e635d3518d
1 /* PR 17947 bad warning with implicit conversion and __attribute__((deprecated)) */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
5 struct Foo
7   operator int() __attribute__((deprecated));
8 };
10 void g(void)
12   Foo f;
13   (int)f; // { dg-warning "'Foo::operator int\\(\\)' is deprecated" }