Closed
Description
Bugzilla Link | 2021 |
Resolution | FIXED |
Resolved on | Mar 12, 2010 00:59 |
Version | unspecified |
OS | Linux |
Extended Description
Testcase:
int a(int i) {
int (*pf)[2];
int (*pv)[i];
(i ? pf : pv);
}
This shouldn't warn because the pointed-to types are compatible. Easy fix to ASTContext, which I'll sort out in a bit.