- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
24 lines
367 B
C++
24 lines
367 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
enum Enum { val = 1 };
|
|
template <Enum v> struct C {
|
|
typedef C<v> Self;
|
|
};
|
|
template struct C<val>;
|
|
|
|
template<typename T>
|
|
struct get_size {
|
|
static const unsigned value = sizeof(T);
|
|
};
|
|
|
|
template<typename T>
|
|
struct X0 {
|
|
enum {
|
|
Val1 = get_size<T>::value,
|
|
Val2,
|
|
SumOfValues = Val1 + Val2
|
|
};
|
|
};
|
|
|
|
X0<int> x0i;
|