ultimatepp/upptst/CheckCompile/main.cpp
cxl efd128cc70 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@9922 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-06-11 15:56:01 +00:00

17 lines
297 B
C++

#include "CheckCompile.h"
CheckCompile::CheckCompile()
{
CtrlLayout(*this, "Window title");
}
GUI_APP_MAIN
{
{
// Checks ambiguity issue with Lambda assignment vs operator<<(String&&, T)
EditString es;
es << [=] { LOG("HERE"); };
String() << AsString(Random());
}
}