blob: efa0e367a74d72a760f5af28e2e935b938c1f780 [file] [log] [blame]
// { dg-do assemble }
// Here is a simple one. GCC correctly gives errors for this code when the
// - -pedantic-errors option is used, whereas g++ doesn't.
int (*p1)[3];
int (*p2)[5];
void
test ()
{
p1 == p2; // { dg-error "6:comparison between distinct pointer types" } comparison.*
p1 > p2; // { dg-error "6:comparison between distinct pointer types" } comparison.*
}