brintos

brintos / llvm-project-archived public Read only

0
0
Text · 191 B · 63f82e0 Raw
9 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify -std=c99 %s2 3int f (int z)4{ 5   if (z > (int) sizeof (enum {a, b}))6      return a;7   return b; // expected-error{{use of undeclared identifier}}8}9