blob: 25e25209e524d98220ae5a9f1e03ee434ddf1aa9 [file] [log] [blame]
/* This is from PR c/25892. See Wpointer-sign.c for more details. */
/* { dg-options "-pedantic" } */
void foo(unsigned long* ulp);
void bar(long* lp) {
foo(lp); /* { dg-warning "differ in signedness" } */
}