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