[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Parser / knr_parameter_attributes.c
blob93c866bfee4e1a40dfdd81a037fecbb346dc6f70
1 // RUN: %clang_cc1 -fsyntax-only -W -Wall -Wno-deprecated-non-prototype -Werror -verify %s -std=c99
2 // expected-no-diagnostics
4 int f(int i __attribute__((__unused__)))
6 return 0;
8 int g(i)
9 int i __attribute__((__unused__));
11 return 0;