blob: 674615748e685181957d1cc90c77e89a161c8566 [file] [log] [blame]
// PR c++/99583
// { dg-do compile { target c++11 } }
void f(...);
template <bool... B>
void g() {
f([]() noexcept(B) {} ...);
}