OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb30.C
1 // { dg-do assemble  }
2 #include <fstream>
3
4 class bifstream : public std::ifstream {
5 public:
6     bifstream();
7 //     ~bifstream();
8 };
9
10 void load_bin()
11 {
12     bifstream InFile;
13
14     if (!InFile)
15         return;
16 }