brintos

brintos / llvm-project-archived public Read only

0
0
Text · 157 B · 837c36d Raw
11 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c23 -pedantic-errors2 3// expected-no-diagnostics4 5static int f(void);6 7int main(void)8{9    typeof(&f) x;10}11