blob: 3a924b00825c5d7935728942bf30de832ade76d5 [file] [log] [blame]
Eli Friedmand72d16e2008-05-18 18:08:51 +00001// RUN: clang %s -fsyntax-only -verify -pedantic
2
Sebastian Redl3cb06922009-02-07 19:52:04 +00003typedef struct S S; // expected-note 3 {{forward declaration of 'struct S'}}
Eli Friedmand72d16e2008-05-18 18:08:51 +00004void a(S* b, void* c) {
Douglas Gregorc983b862009-01-23 00:36:41 +00005 void (*fp)(int) = 0;
Eli Friedmand72d16e2008-05-18 18:08:51 +00006 b++; // expected-error {{arithmetic on pointer to incomplete type}}
7 b += 1; // expected-error {{arithmetic on pointer to incomplete type}}
8 c++; // expected-warning {{use of GNU void* extension}}
9 c += 1; // expected-warning {{use of GNU void* extension}}
Douglas Gregorc983b862009-01-23 00:36:41 +000010 c--; // expected-warning {{use of GNU void* extension}}
11 c -= 1; // expected-warning {{use of GNU void* extension}}
Eli Friedmand72d16e2008-05-18 18:08:51 +000012 b = 1+b; // expected-error {{arithmetic on pointer to incomplete type}}
13 /* The next couple tests are only pedantic warnings in gcc */
14 void (*d)(S*,void*) = a;
Douglas Gregorc983b862009-01-23 00:36:41 +000015 d += 1; // expected-warning {{arithmetic on pointer to function type 'void (*)(S *, void *)' is a GNU extension}}
16 d++; // expected-warning {{arithmetic on pointer to function type 'void (*)(S *, void *)' is a GNU extension}}}
17 d--; // expected-warning {{arithmetic on pointer to function type 'void (*)(S *, void *)' is a GNU extension}}
18 d -= 1; // expected-warning {{arithmetic on pointer to function type 'void (*)(S *, void *)' is a GNU extension}}
Eli Friedmand72d16e2008-05-18 18:08:51 +000019}