re PR c++/64834 (Captured variable not available in unevaluated context in a lambda with auto argument)

2015-03-05  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/64834
	* g++.dg/cpp1y/lambda-generic-uneval1.C: New.

From-SVN: r221205
This commit is contained in:
Paolo Carlini 2015-03-05 08:48:22 +00:00 committed by Paolo Carlini
parent 58ed456cb6
commit 637e43b8e1
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2015-03-05 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/64834
* g++.dg/cpp1y/lambda-generic-uneval1.C: New.
2015-03-04 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/entry_queues3.adb: New test.

View File

@ -0,0 +1,17 @@
// PR c++/64834
// { dg-do compile { target c++14 } }
template <typename F>
void e(F f)
{
f(1);
}
template <int I>
void bar() {
int x;
e([&] (const int& y) { (void)sizeof(x); });
e([&] (const auto& y) { (void)sizeof(x); });
}
void baz() { bar<1>(); }