blob: aee43e552dc5db4cffe4a233fed3deed49c3e1f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-options "-Wdeprecated-declarations" } */
/* IGNORE_SHORT_MACRO is < 32 characters long, and hence its location
can be stored without needing an ad-hoc location. */
#define IGNORE_SHORT_MACRO _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
__attribute__((deprecated)) void f();
int main() {
IGNORE_SHORT_MACRO
f();
}
|