Pointer to a pointer implementation is incorrect:
MAIN
var a = 15
var *ptr = &a
var **ptr2 = &ptr
END_MAIN
The above simc code should be valid, but it is throwing the following error:

Note: This must be fixed for pointer to pointer, pointer to pointer to pointer, and so on as well...