summaryrefslogtreecommitdiff
path: root/test/LLVMC/C++/just-compile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/LLVMC/C++/just-compile.cpp')
-rw-r--r--test/LLVMC/C++/just-compile.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/LLVMC/C++/just-compile.cpp b/test/LLVMC/C++/just-compile.cpp
deleted file mode 100644
index 771c9822da..0000000000
--- a/test/LLVMC/C++/just-compile.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-// Test that the -c flag works.
-// RUN: llvmc -c %s -o %t.o
-// RUN: llvmc --linker=c++ %t.o -o %t
-// RUN: %abs_tmp | grep hello
-// XFAIL: vg
-#include <iostream>
-
-int main() {
- std::cout << "hello" << '\n';
-}