blob: 9747327364be78469164d8885647279c6c5dfc3d [file] [log] [blame]
Eli Friedmanf05c05d2009-03-22 23:59:44 +00001// RUN: clang %s -verify -fsyntax-only
2
3int a(int* x);
4int b(unsigned* y) { return a(y); } // expected-warning {{pointer types point to integer types with different sign}}
5