blob: 115bbab8151cefbdd46ca6004734355899d46b6b [file] [log] [blame]
Douglas Gregore0762c92009-06-19 23:52:42 +00001// RUN: clang -fsyntax-only -Wunused-parameter %s -Xclang -verify
2
3int f0(int x,
4 int y, // expected-warning{{unused}}
5 int z __attribute__((unused))) {
6 return x;
7}
8
9void f1() {
10 (void)^(int x,
11 int y, // expected-warning{{unused}}
12 int z __attribute__((unused))) { return x; };
13}