blob: 9bc473fb9d779b36129381c5982c482593eb4b23 [file] [log] [blame]
// Build don't link:
class error {
public:
error(int) {}
};
class foo {
const error x = 1; // ERROR - initialization of non-static data member
};