summaryrefslogtreecommitdiffstats
path: root/Tests/Module/CheckIPOSupported-CXX/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Module/CheckIPOSupported-CXX/main.cpp')
-rw-r--r--Tests/Module/CheckIPOSupported-CXX/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/Module/CheckIPOSupported-CXX/main.cpp b/Tests/Module/CheckIPOSupported-CXX/main.cpp
new file mode 100644
index 0000000..99204ab
--- /dev/null
+++ b/Tests/Module/CheckIPOSupported-CXX/main.cpp
@@ -0,0 +1,9 @@
+int foo();
+
+int main()
+{
+ if (foo() == 0) {
+ return 1;
+ }
+ return 0;
+}