Running my code on AS 2.28.1 WIP (taken from svn 2013-11-20)
Following code gives an error "ERR : Identifier 'Parent' is not a data type"
class Parent {}
namespace child {
class Child : Parent {}
}
but 2nd code compiles without any errors
class Parent {}
namespace child {
class Child : ::Parent {}
}
Will the scope operator "::" be mandatory also in future?