f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
11 lines
303 B
C
11 lines
303 B
C
// RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic
|
|
|
|
typedef const char rchar;
|
|
int a(char* a, rchar* b) {
|
|
return a-b;
|
|
}
|
|
|
|
// <rdar://problem/6520707>
|
|
void f0(void (*fp)(void)) {
|
|
int x = fp - fp; // expected-warning{{arithmetic on pointers to the function type 'void (void)' is a GNU extension}}
|
|
}
|