(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
vt-33964.C
// { dg-do compile { target c++11 } }
template<typename ... Args>
struct foo
{
    static bool const value = true;
};

template<typename ... Args>
struct foo< typename Args::is_applied... > // { dg-error "not deducible|Args" }
{
    static bool const value = false;
};

struct not_applied { typedef void is_applied; };
struct applied { typedef applied is_applied; };

int main()
{
    foo<applied, applied> i;
}