- do not print a space at the end of qualifiers (needed for diagnostic)
[cparser] / parsetest / cp_error033.c
index bec16d7..093c28b 100644 (file)
@@ -8,7 +8,8 @@ static struct A deduce_conversion(int from, int to)
        return result;
 }
 
-struct A *globa;
+struct A globa_real;
+struct A *globa = &globa_real;
 
 int main(int argc, char **argv)
 {