You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry for the slow reply. Forward declarations are needed if you want to support mutual recursion. This is something that could be tested (see the list of more advanced features), but I suggest you leave it as a low-priority feature.
I just wanted to ask if you're going to be testing for function declarations in the c translator since it's not explicitly clear in the spec.
For example:
void f();
int main(){
f();
}
void f(){
definition here...
}
would a test case like this ever come up
The text was updated successfully, but these errors were encountered: