Dead
[official-gcc.git] / gomp-20050608-branch / libmudflap / testsuite / libmudflap.c++ / ctors-1.cxx
blob7717c805ca58ea6b7279668e66d6c70a7e1e37f0
1 #include <iostream>
4 extern char k [];
6 class foo
8 public:
9 foo (char *m) { m [40] = 20; }
13 foo f1 (k);
14 foo f2 (k);
15 foo f3 (k);
17 int main ()
19 return 0;