Commit 89ce81fb by Marek Polacek Committed by Marek Polacek

re PR c++/86926 (ICE for a recursive generic lambda)

	PR c++/86926
	* g++.dg/cpp1z/constexpr-lambda23.C: New test.

From-SVN: r268080
parent 3a42e16d
2019-01-18 Marek Polacek <polacek@redhat.com>
PR c++/86926
* g++.dg/cpp1z/constexpr-lambda23.C: New test.
2019-01-18 H.J. Lu <hongjiu.lu@intel.com>
PR middle-end/88587
......
// PR c++/86926
// { dg-do compile { target c++17 } }
int
main()
{
constexpr auto f = [](auto self, auto n) {
if(n < 2)
return n;
return self(self, n - 1) + self(self, n - 2);
};
constexpr auto fibonacci = [=](auto n) { return f(f, n); };
static_assert(fibonacci(7) == 13);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment