This removes links to rdar, which is an internal bug tracker that the community doesn't have visibility into. See further discussion at: https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
11 lines
274 B
C
11 lines
274 B
C
// RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic
|
|
|
|
typedef const char rchar;
|
|
int a(char* a, rchar* b) {
|
|
return a-b;
|
|
}
|
|
|
|
void f0(void (*fp)(void)) {
|
|
int x = fp - fp; // expected-warning{{arithmetic on pointers to the function type 'void (void)' is a GNU extension}}
|
|
}
|