1// { dg-do compile }
2// GROUPS passed old-abort
3class Graph {
4public:
5      unsigned         char N;
6      Graph(void) {}; // { dg-error "previously defined here" }
7}
8
9Graph::Graph(void)    // { dg-error "return type|redefinition|semicolon" }
10{    N = 10;
11}
12
13