| 1 | void f() __attribute__((unavailable)); |
|---|---|
| 2 | void g(); |
| 3 | #define g() f() |
| 4 | #define h() f() |
| 5 | #define x x |
| 6 | #define h2() f() |
| 7 | |
| 8 | #define h3() |
| 9 | #undef h3 |
| 10 |
| 1 | void f() __attribute__((unavailable)); |
|---|---|
| 2 | void g(); |
| 3 | #define g() f() |
| 4 | #define h() f() |
| 5 | #define x x |
| 6 | #define h2() f() |
| 7 | |
| 8 | #define h3() |
| 9 | #undef h3 |
| 10 |