Reports the variables with the references to the local variables that escape their scope.

Example:


  int *escapeLocalScope() {
    int lv = 100;
    return &lv;
  }