PR2727.c revision d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
1// RUN: clang-cc -verify -fsyntax-only -std=c90 %s &&
2// RUN: clang-cc -verify -fsyntax-only -std=c99 %s
3
4int f (int x)
5{
6  // sizeof applied to a type should not delete the type.
7  return sizeof (int[x]);
8}
9