FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / syntax1.C
blob90419a2046675bfbdd0d16c7c9a976b8b8f1c892
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3 // Special g++ Options: -fsyntax-only
5 class AAA{
6 public:
7   virtual void fff();
8 };
10 void AAA::fff() {}
12 AAA aaa;
14 main ()
16   aaa.fff();