Browse Source

Forgot main_error.cpp in tests.

merge-requests/37/head
eidheim 11 years ago
parent
commit
7f9f9b8be2
  1. 7
      tests/case/main_error.cpp

7
tests/case/main_error.cpp

@ -0,0 +1,7 @@
#include <iostream>
int main(int argc, char *argv[]) {
std::cout << "Hello, World!" << std::endl;
std::cout << undeclared_variable << std::endl;
return 0;
}
Loading…
Cancel
Save