Hello all, I’ve lost my mind trying to increment a global variable and am seeking your help to find it 
I have this set in extensions.conf:
[globals]
NONEXISTENT=0
Then in the dialplan:
exten => NONEXISTENT,1,Set(GLOBAL(NONEXISTENT)=${INC(GLOBAL(NONEXISTENT))})
Returns this:
func_math.c:401 crement_function_read: Failed to obtain variable GLOBAL(NONEXISTENT), bailing out
But the variable certainly exists:
exten => NONEXISTENT,1,NoOp(${GLOBAL(NONEXISTENT)})
Returns:
0
For my life I can’t seem to figure out why I can’t increment a global variable.
Any advice appreciated 
