summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/static14.C
blob: 32f8b3be4ac50a18e673add8e26f58691fa4a38d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do link  }
// Origin: scott snyder <snyder@fnal.gov>

struct basic_string
{
  ~basic_string();
};

struct Side
{
  void name()
  {
    static basic_string sname;
  }
};

int main ()
{
}