921e5a0eb4
From-SVN: r14840
13 lines
222 B
C
13 lines
222 B
C
// 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.*
|
|
}
|
|
|