From 7f9f9b8be2a1d611a227cd2d1f3576b990d848c0 Mon Sep 17 00:00:00 2001 From: eidheim Date: Mon, 29 Jun 2015 16:29:56 +0200 Subject: [PATCH] Forgot main_error.cpp in tests. --- tests/case/main_error.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/case/main_error.cpp diff --git a/tests/case/main_error.cpp b/tests/case/main_error.cpp new file mode 100644 index 0000000..21f9c23 --- /dev/null +++ b/tests/case/main_error.cpp @@ -0,0 +1,7 @@ +#include + +int main(int argc, char *argv[]) { + std::cout << "Hello, World!" << std::endl; + std::cout << undeclared_variable << std::endl; + return 0; +}