OSDN Git Service

* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / syntax1.C
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3 // Special g++ Options: -fsyntax-only
4
5 class AAA{
6 public:
7   virtual void fff();
8 };
9
10 void AAA::fff() {}
11
12 AAA aaa;
13
14 main ()
15 {
16   aaa.fff();
17 }