blob: afb95166cbce2b72c37198d649379a208bcf5890 [file] [log] [blame]
Douglas Gregor6aed7662009-06-20 00:29:46 +00001// RUN: clang -fblocks -fsyntax-only -Wunused-parameter %s -Xclang -verify
Douglas Gregore0762c92009-06-19 23:52:42 +00002
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; };
Douglas Gregor6aed7662009-06-20 00:29:46 +000013}