I can't seem to access an enum from another class (in the same project). For example:
class myClass
{
static enum { MY_CONSTANT }
}
class myView
{
var status = myClass.MY_CONSTANT;
}
This fails at runtime with 'Symbol Not Found'
What am I doing wrong?
Cheers
Chris