Hi, I was testing some C++14 features with the latest version of mingw, but it seems the auto println line does not work.
1 2
auto println=[](constauto& out){cout<<out<<endl;};
println("test");
This is to test automatic lambda parameters. I already tried binary literals, and it worked.
The error is: println does not name a type
How do I fix this?