diff options
Diffstat (limited to 'libmudflap/testsuite/libmudflap.c++/ctors-1.cxx')
-rw-r--r-- | libmudflap/testsuite/libmudflap.c++/ctors-1.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libmudflap/testsuite/libmudflap.c++/ctors-1.cxx b/libmudflap/testsuite/libmudflap.c++/ctors-1.cxx new file mode 100644 index 000000000..7717c805c --- /dev/null +++ b/libmudflap/testsuite/libmudflap.c++/ctors-1.cxx @@ -0,0 +1,20 @@ +#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; +} |