// PR c++/39608// We were improperly considering dependent members of the current// instantiation to be non-constant (and therefore invalid template// non-type arguments).template<intI>structC{};template<classT>structA{staticconstTx=1;C<A<T>::x>c;// { dg-bogus "invalid" }};A<int>a;