関数をエスケープするローカル変数への参照を報告します

例:


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