함수를 이스케이프하는 지역 값에 대한 참조를 보고합니다

예:


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