blob: b1248fe23e8e22c5101ce448a3603fe1ef5adfc7 [file] [log] [blame]
// PR c++/101764
// { dg-do compile { target c++17 } }
void g(...);
template<class>
auto f() {
return [](auto... ts) {
g([] { if constexpr (sizeof(ts)); }...);
#if __cpp_concepts
g(requires { decltype(ts){0}; }...);
#endif
};
}
int main() {
f<int>()('a', true);
}