source: trunk/testcase/throw.cpp@ 2120

Last change on this file since 2120 was 837, checked in by bird, 22 years ago

Extended testcase.

  • Property cvs2svn:cvs-rev set to 1.4
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
RevLine 
[575]1#include <stdio.h>
[834]2#include "throw.h"
[575]3
4class foo
5{
6 int i;
7public:
8 foo(int i) : i(i)
9 {
[837]10 dfprintf((stderr, "foo::constructor 1\n"));
[575]