blob: dc369aba2d0904a7664cac34f3e60fa97974bbaa [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Sebastian Redl4a4251b2009-02-07 13:06:23 +00002
3// C++-specific tests for integral constant expressions.
4
5const int c = 10;
6int ar[c];
Douglas Gregor59600d82009-09-10 17:44:23 +00007
8struct X0 {
9 static const int value = static_cast<int>(4.0);
10};