namespace A
{
enum B
{
b1,
}
void main()
{
B b = B::b1; // Error: Unknown scope 'B'
B b = b1; // OK
B b = A::B::b1; // OK
}
}
Hello.
Partial namespace specialization of enum namespace is not supported.
This is ok or not?
AngelScript revision - 2252.