blob: 658ae43e7005564e43161a5f07de6b2e00d580df [file] [log] [blame]
// PR c++/84015
// { dg-do compile { target c++17 } }
template <int I>
struct A { };
template <int I>
struct B
{
template<template<auto>class T>
B(T<I>);
};
A<42> a;
B b (a);