ultimatepp/uppdev/Any/Any.cpp
cxl 893a7924da Updating uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@527 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-10-13 20:06:12 +00:00

22 lines
265 B
C++

#include <Core/Core.h>
using namespace Upp;
int x;
thread__ int *alfa[10] = { &x, &x };
CONSOLE_APP_MAIN
{
Any alpha;
alpha.Create<int>();
One<String> x;
x.
if(alpha.Is<int>())
RLOG("int");
if(alpha.Is<int>())
RLOG("int");
}