Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / pch / static-1.Hs
blobd277b787bafa9e1e813424ca911def9928784e72
1 class A
3 public:
4         int val;
6         ~A() {
7                 int i = 2;
8         }
10         static void StaticTest() {
11                 static A a;
12         }