blob: 41028824ce88295c5118733b56c59ad94a76514c [file] [log] [blame]
// { dg-do compile { target c++2a } }
template <int N>
struct A { };
template <int N>
void g(A<[]{return N;}()>) {}
int main()
{
g<1>({});
}