2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / syntax1.C
blobf1d3a86549c03e1282adfea4625d9216df17fa3c
1 // { dg-do assemble  }
2 // { dg-options "-fsyntax-only" }
3 // Origin: Mark Mitchell <mark@codesourcery.com>
5 class AAA{
6 public:
7   virtual void fff();
8 };
10 void AAA::fff() {}
12 AAA aaa;
14 main ()
16   aaa.fff();