blob: 1cf450e363f2bf349f397c877cff12dc41692d39 [file] [log] [blame]
// { dg-do compile { target c++11 } }
namespace std
{
typedef int I;
}
void foo ()
{
using namespace std;
auto l = [] (I) {};
}