FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb30.C
blob9814697b141cb3ff11ddcdd03bc50fa2fd453dba
1 // Build don't link:
2 #include <fstream>
4 class bifstream : public std::ifstream {
5 public:
6     bifstream();
7 //     ~bifstream();
8 };
10 void load_bin()
12     bifstream InFile;
14     if (!InFile)
15         return;