[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / Parser / knr_parameter_attributes.c
blobb11a75ed20753d9fa7113fc06e03fefd76c1edbe
1 // RUN: %clang_cc1 -fsyntax-only -W -Wall -Werror -verify %s
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;