blob: d7e08a3876f0461d14dc201648df3830ac42d8d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Here is a simple one. GCC correctly gives errors for this code when the
// - -pedantic-errors option is used, whereas g++ doesn't.
// Build don't link:
int (*p1)[3];
int (*p2)[5];
void
test ()
{
p1 == p2; // ERROR - comparison.*
p1 > p2; // ERROR - comparison.*
}
|