blob: 0829dc239df8ca166eb8ef3e30a90dbe5538789b [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -verify -fsyntax-only -std=c90 %s
Daniel Dunbard7d5f022009-03-24 02:24:46 +00002// RUN: clang-cc -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}