1// Build don't link:
2// GROUPS passed error-messages
3#include <fstream>
4#include <iomanip>
5
6// This error should not appear:
7// bug.C: In method `test::test(const class test &)':
8// bug.C:8: field `' not in immediate context
9
10class test{
11public:
12	int	flags;
13	test()	{};
14	};
15
16int main()
17
18{
19return 0;
20}
21