blob: 11282fdea8a47164ba87fb1b7d8731e79a3cb53b [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
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00003// expected-no-diagnostics
Daniel Dunbaraa1f9f12008-08-28 18:42:20 +00004
Daniel Dunbar90488912008-08-28 18:02:04 +00005int f (int x)
6{
7 // sizeof applied to a type should not delete the type.
8 return sizeof (int[x]);
9}