2017-06-14 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / ttp20.C
blob0d1784c9f82ca74128c0e44198b98892443aa2b8
1 // PR c++/27424
2 // Bug: failing to substitute the 'int' into C
4 template<typename T> struct A
6     template<template<T> class> struct B {};
7     template<T> struct C;
8     B<C> b;
9 };
11 A<int> a;