mirror of git://gcc.gnu.org/git/gcc.git
parent
0e510edb0d
commit
3909991c7b
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
// { dg-do compile { target c++11 } }
|
||||
|
||||
namespace std
|
||||
{
|
||||
typedef int I;
|
||||
}
|
||||
|
||||
void foo ()
|
||||
{
|
||||
using namespace std;
|
||||
|
||||
auto l = [] (I) {};
|
||||
}
|
||||
Loading…
Reference in New Issue