bolt/deps/llvm-18.1.8/clang/test/Sema/pointer-subtract-compat.c

11 lines
274 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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}}
}