More #include suggestions (PR c++/84269)
[official-gcc.git] / gcc / testsuite / g++.dg / plugin / def-plugin-test.C
blobb7f2d3d3fa9749eeea93123bee63ec3d71e49e79
1 int global = 12;
3 int function1(void);
5 int function2(int a) // { dg-warning "Start fndef function2" }
7   return function1() + a;
8 } //  { dg-warning "Finish fndef function2" }
10 int function1(void) // { dg-warning "Start fndef function1" }
12   return global + 1;
13 } //  { dg-warning "Finish fndef function1" }