blob: 9a90a9cd6ce762ebd28a19050b350aa8206fd8f6 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Eli Friedmaned0716b2009-12-11 01:34:50 +00003
4template<int IntBits> struct X {
5 enum {
6 IntShift = (unsigned long long)IntBits,
7 ShiftedIntMask = (1 << IntShift)
8 };
9};
10X<1> x;