brintos

brintos / llvm-project-archived public Read only

0
0
Text · 253 B · 93c866b Raw
13 lines · c
1// RUN: %clang_cc1 -fsyntax-only -W -Wall -Wno-deprecated-non-prototype -Werror -verify %s -std=c992// expected-no-diagnostics3 4int f(int i __attribute__((__unused__)))5{6    return 0;7}8int g(i)9    int i __attribute__((__unused__));10{11    return 0;12}13