blob: 082aff9261d920a1fb78ac5dc84e33c40c05ff5c [file] [log] [blame]
// PR c++/79590
// { dg-do compile { target c++14 } }
auto f = [](auto x) noexcept(noexcept(x)) { };
int main()
{
[](auto x) noexcept(noexcept(x)) { } (0);
[](auto) noexcept(noexcept(0)) { } (0);
}