mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
17 lines
297 B
C++
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());
|
|
}
|
|
}
|