blob: 734f8f97935da67dd7f83971995f1c87a1f7ce10 [file] [log] [blame]
// PR c++/80465
// { dg-do compile { target c++17 } }
int foo(...);
int main() {
[](auto a) noexcept(noexcept(foo(a))){}(42);
}