i am not quite sure what you are doing with your code. is this C++ or C# ?
assuming this is C++ for the moment, i can see the header file having:
namespace feline
{
class chocolate
{
int SomeField;
string SomeMethod();
}
}
and the cpp file having:
static void testThings()
{
feline::chocolate foo;
foo.|
}
but where does your item "ScopingMember" come from? are you using a namespace inside a namespace?
do you have a sample piece of code that causes this exception that you can post?