OSDN Git Service

* g++.old-deja/g++.other/init5.C: Remove xfail for powerpc-linux.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / static5.C
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 struct S
5 {
6   ~S();
7 };
8
9 inline void f()
10 {
11   static S s;
12   atexit (0); // { dg-error "" } implicit declaration
13 }
14
15
16