blob: 332b0df72835017e58f7a3ca3dab64f4c101fcef [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -verify -fsyntax-only -std=c90 %s
2// RUN: %clang_cc1 -verify -fsyntax-only -std=c99 %s
Daniel Dunbaraa1f9f12008-08-28 18:42:20 +00003
Daniel Dunbar90488912008-08-28 18:02:04 +00004int f (int x)
5{
6 // sizeof applied to a type should not delete the type.
7 return sizeof (int[x]);
8}