// RUN: %clang_cc1 -std=c++11 -verify %s -fexperimental-new-constant-interpreter template struct S; // expected-note 3{{here}} struct LiteralType { constexpr LiteralType(int n) : n(n) {} int n; }; template struct T { T() { // An identifier is value-dependent if it is: // - a name declared with a dependent type S s; S check1; // ok, s is value-dependent // - the name of a non-type template parameter typename S::T check2; // ok, n is value-dependent // - a potentially-constant variable that is initialized with an // expression that is value-dependent. const int k = n; typename S::T check3a; // ok, u is value-dependent constexpr const int *p = &k; typename S<*p>::T check3b; // ok, p is value-dependent const int &i = k; typename S::T check4; // ok, i is value-dependent static const int ki = 42; const int &i2 = ki; typename S::T check5; // expected-error {{undefined template}} constexpr LiteralType x = n; typename S::T check6; // ok, x is value-dependent const LiteralType y = n; typename S::T check7; // expected-error {{undefined template}} constexpr LiteralType z = 42; typename S::T check8; // expected-error {{undefined template}} } };