1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Test that we handle mangling of statics in inlines properly. // { dg-options -fno-weak } // { dg-do run } inline int f () { static int nested; nested = 24; { static int nested; nested = 42; } return (nested != 24); } int main() { return f (); }