* g++.dg/lookup/lambda1.C New.

From-SVN: r248747
This commit is contained in:
Nathan Sidwell 2017-05-31 16:38:28 +00:00 committed by Nathan Sidwell
parent 0e510edb0d
commit 3909991c7b
2 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2017-05-31 Nathan Sidwell <nathan@acm.org>
* g++.dg/lookup/lambda1.C New.
2017-05-31 Bin Cheng <bin.cheng@arm.com>
* gcc.dg/tree-ssa/ivopt_mult_4.c: Explicitly check comparison

View File

@ -0,0 +1,13 @@
// { dg-do compile { target c++11 } }
namespace std
{
typedef int I;
}
void foo ()
{
using namespace std;
auto l = [] (I) {};
}