blob: 5030b297ae0d62ec1811a117e62b8f271da18bd5 [file] [log] [blame]
// Build don't link:
// GROUPS passed old-abort
class Graph {
public:
unsigned char N;
Graph(void) {}; // ERROR - previously defined here
}
Graph::Graph(void)
{ N = 10;// ERROR - return type.*
}