summaryrefslogtreecommitdiffstats
path: root/test/Sema/pointer-subtract-compat.c
blob: b3be37e7f185fcab032ca1a5d9038cb34340aa08 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang-cc %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 pointer to function type 'void (*)(void)' is a GNU extension}}
}
OpenPOWER on IntegriCloud