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