comparison libmudflap/testsuite/libmudflap.c++/ctors-1.cxx @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 #include <iostream>
2
3
4 extern char k [];
5
6 class foo
7 {
8 public:
9 foo (char *m) { m [40] = 20; }
10 };
11
12
13 foo f1 (k);
14 foo f2 (k);
15 foo f3 (k);
16
17 int main ()
18 {
19 return 0;
20 }