allwinner_a64/android/external/clang/test/Parser/if-scope-c90.c
2018-08-08 16:14:42 +08:00

9 lines
168 B
C

// RUN: %clang_cc1 -fsyntax-only -verify -std=c90 %s
// expected-no-diagnostics
int f (int z)
{
if (z > (int) sizeof (enum {a, b}))
return a;
return b;
}