view 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
line wrap: on
line source

#include <iostream>


extern char k [];

class foo
{
 public:
  foo (char *m) { m [40] = 20; }
};


foo f1 (k);
foo f2 (k);
foo f3 (k);

int main ()
{
  return 0;
}