brintos

brintos / llvm-project-archived public Read only

0
0
Text · 233 B · ee2a011 Raw
8 lines · c
1// RUN: %clang_cc1 -fsyntax-only %s -verify -Wno-deprecated-non-prototype -std=c992 3int x(a) int a; {return a;}4int y(b) int b; {return a;} // expected-error {{use of undeclared identifier}}5 6// PR23327int a(a)int a;{a=10;return a;}8