summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb30.C
blob: c116ab4cd4dbf37138baeeb0653a28ef2bce2187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Build don't link:
#include <fstream.h>

class bifstream : public ifstream {
public:
    bifstream();
//     ~bifstream();
};

void load_bin()
{
    bifstream InFile;

    if (!InFile)
        return;
}