New test case

From-SVN: r26735
This commit is contained in:
Mark Mitchell 1999-05-02 22:34:55 +00:00
parent 412e0b3cee
commit 2a5557ffd5

View File

@ -0,0 +1,15 @@
// Build don't run:
// Origin: DJ Delorie <dj@delorie.com>
class X {
public:
int i;
X() { i = 0; }
~X();
virtual int foo() { return i; }
virtual void bar();
};
int main()
{
}