ultimatepp/uppdev/Parser/test.cpp
cxl 351994a6cc Adding uppdev....
git-svn-id: svn://ultimatepp.org/upp/trunk@328 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-08-15 08:36:24 +00:00

20 lines
201 B
C++

template <class T, class U>
class X {
public:
T alfa();
T beta;
U u;
String s;
};
struct Test : X<String, Color>
{
Test();
};
void Alfa()
{
Test x;
x.beta;
x.u. <<<!!!!
}