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