Skip to content

Instantly share code, notes, and snippets.

@swenson
Created March 28, 2016 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swenson/34490cd907cc8330614e to your computer and use it in GitHub Desktop.
Save swenson/34490cd907cc8330614e to your computer and use it in GitHub Desktop.
Tuple destructor: formal count does not match argument count
proc f() : (int, int) {
return f();
}
proc main() {
f();
}
@swenson
Copy link
Author

swenson commented Mar 28, 2016

$ chpl --devel repro.chpl
repro.chpl:1: In function 'f':
repro.chpl:2: internal error: number of actuals does not match number of formals [callDestructors.cpp:1120]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment