blob: 76a084090aea091f748c99668e68e9494728963a [file] [log] [blame]
// Build don't link:
// GROUPS passed error-messages
#include <fstream>
#include <iomanip>
// This error should not appear:
// bug.C: In method `test::test(const class test &)':
// bug.C:8: field `' not in immediate context
class test{
public:
int flags;
test() {};
};
int main()
{
return 0;
}