Commit 2c34eb74 by Paolo Carlini Committed by Paolo Carlini

re PR c++/67838 (Rejects-valid-code: templated lambda variable.)

2015-10-22  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/67838
	* g++.dg/cpp1y/var-templ46.C: New.

From-SVN: r229175
parent 5eec02d0
2015-10-22 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/67838
* g++.dg/cpp1y/var-templ46.C: New.
2015-10-22 Richard Biener <rguenther@suse.de>
PR tree-optimization/58497
......
// PR c++/67838
// { dg-do compile { target c++14 } }
template<bool LMode>
static auto TestFunc = [](int param1)
{
return param1;
};
template<typename Func>
static void test(Func func)
{
func(12345);
}
int main()
{
test(TestFunc<false>);
test(TestFunc<true>);
}
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