PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ttp24.C
blob2b8e28515ff1f9d8ec1a18ee4f0e102aa673a9af
1 // PR c++/30897
3 template<template <typename T, typename = T > class U> struct A
5   template<int> U<int> foo();
6 };