AngelScript revision 1932.
I want use mixin in classes placed in separate namespaces.
But if class placed in named namespace, than mixin not works for it.
Example:
mixin class M1
{
int a;
}
namespace N1
{
class C1 : M1
{
void foo()
{
a = 10;
}
}
}
Output:
INFO : Compiling void C1::foo().
ERROR : 'a' is not declared.