jamesjuett / lobster

Interactive Program Visualization Tools
8 stars 3 forks source link

Return-by-reference function missing return statement causes crash #220

Open jamesjuett opened 3 years ago

jamesjuett commented 3 years ago

Repro:


int &func() {

}

int main() {
  func();
  int x = 3;
}