(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
ttp20.C
// PR c++/27424
// Bug: failing to substitute the 'int' into C

template<typename T> struct A
{
    template<template<T> class> struct B {};
    template<T> struct C;
    B<C> b;
};

A<int> a;