summaryrefslogtreecommitdiff
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.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/Module/CheckIPOSupported-CXX/main.cpp b/Tests/Module/CheckIPOSupported-CXX/main.cpp
index 99204abce..28ab26f64 100644
--- a/Tests/Module/CheckIPOSupported-CXX/main.cpp
+++ b/Tests/Module/CheckIPOSupported-CXX/main.cpp
@@ -1,8 +1,9 @@
int foo();
+int bar();
int main()
{
- if (foo() == 0) {
+ if (foo() != bar()) {
return 1;
}
return 0;