Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.other / init14.C
blobe3fca53f64fa15e6c9caff0b885885e36fa21587
1 // { dg-do assemble  }
2 // Origin: bkoz@nabi.net
4 typedef struct
6   int count;
7 } mbstate_t;
9 struct fpos
11   mbstate_t  _M_st;
12   fpos(int __pos)
13     : _M_st() { 
14   }
17 int main ()
19   fpos f (2);