// RUN: %clang_cc1 -fsyntax-only %s template struct FibonacciEval; template struct Fibonacci { enum { value = FibonacciEval::value + FibonacciEval::value }; }; template struct FibonacciEval { enum { value = Fibonacci::value }; }; template<> struct Fibonacci<0> { enum { value = 0 }; }; template<> struct Fibonacci<1> { enum { value = 1 }; }; int array5[Fibonacci<5>::value == 5? 1 : -1]; int array10[Fibonacci<10>::value == 55? 1 : -1]; template struct FibonacciEval2; template struct Fibonacci2 { static const unsigned value = FibonacciEval2::value + FibonacciEval2::value; }; template struct FibonacciEval2 { static const unsigned value = Fibonacci2::value; }; template<> struct Fibonacci2<0> { static const unsigned value = 0; }; template<> struct Fibonacci2<1> { static const unsigned value = 1; }; int array5_2[Fibonacci2<5>::value == 5? 1 : -1]; int array10_2[Fibonacci2<10>::value == 55? 1 : -1]; template struct Fibonacci3 { static const unsigned value = Fibonacci3::value + Fibonacci3::value; }; template<> struct Fibonacci3<0> { static const unsigned value = 0; }; template<> struct Fibonacci3<1> { static const unsigned value = 1; }; int array5_3[Fibonacci3<5>::value == 5? 1 : -1]; int array10_3[Fibonacci3<10>::value == 55? 1 : -1];