blob: f8a2a0ed7885c0079aa2641af08bab02ccd0b7c2 [file] [log] [blame]
Ted Kremenek178cee22008-07-21 22:09:15 +00001// RUN: clang -fsyntax-only -verify %s
2
3int f1(int x) __attribute__((nonnull));
4int f2(int *x) __attribute__ ((nonnull (1)));
5int f3(int *x) __attribute__ ((nonnull (0))); // expected-error {{'nonnull' attribute parameter 1 is out of bounds}}
6int f4(int *x, int *y) __attribute__ ((nonnull (1,2)));
7int f5(int *x, int *y) __attribute__ ((nonnull (2,1)));
8