git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73804 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2009-06-20 00:29:46 +00:00
Родитель 9b0b57c6f9
Коммит 6aed766538
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang -fsyntax-only -Wunused-parameter %s -Xclang -verify // RUN: clang -fblocks -fsyntax-only -Wunused-parameter %s -Xclang -verify
int f0(int x, int f0(int x,
int y, // expected-warning{{unused}} int y, // expected-warning{{unused}}
@ -10,4 +10,4 @@ void f1() {
(void)^(int x, (void)^(int x,
int y, // expected-warning{{unused}} int y, // expected-warning{{unused}}
int z __attribute__((unused))) { return x; }; int z __attribute__((unused))) { return x; };
} }