bolt/deps/llvm-18.1.8/clang/test/Parser/knr_parameter_attributes.c
2025-02-14 19:21:04 +01:00

12 lines
253 B
C

// RUN: %clang_cc1 -fsyntax-only -W -Wall -Wno-deprecated-non-prototype -Werror -verify %s -std=c99
// expected-no-diagnostics
int f(int i __attribute__((__unused__)))
{
return 0;
}
int g(i)
int i __attribute__((__unused__));
{
return 0;
}