Open and start the included mission folder.
Run from console:
```
_testCfg = missionconfigfile >> "CfgSavingTest" >> "InnerClass";
systemchat format["testCfg %1", _testCfg];
profilenamespace setVariable ["cfgTestSave",_testCfg];
saveprofilenamespace;
```
Then enter back to editor and restart the mission.
The run from console:
```
testVar = profilenamespace getVariable "cfgTestSave";
systemchat format[">>> '%1' >> '%2' >> '%3'",testVar,typename testVar, getNumber(testVar >> "someValue")];
```
And you should see that the output is wrong. instead of printing the class path at %1 nothing gets printed
mission file:
{F2439811}