Add the test case

To test our KAST expression (which includes a custom function), we'll add the following to the testcase.cc file in the C.KAST.CUST.FUNC directory:

int main() {

   int* x;

//Reporting ckastcustfunc  
   x = 0;  
   cin >> x;
 
   return 0;

}