OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / syntax1.C
1 // { dg-do assemble  }
2 // { dg-options "-fsyntax-only" }
3 // Origin: Mark Mitchell <mark@codesourcery.com>
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 }