diff options
author | Ruslan Baratov <ruslan_baratov@yahoo.com> | 2017-04-13 15:05:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-04-18 15:54:33 (GMT) |
commit | eeb58c5c34a888acbb422e66ff7895cb35c9322a (patch) | |
tree | 6cf4d10b2c4fef5ae5064af13d49a36d19956250 /Tests/Module/CheckIPOSupported-CXX/main.cpp | |
parent | f79b8fad096b08f1fbe8346e1d338cca2c444ccb (diff) | |
download | CMake-eeb58c5c34a888acbb422e66ff7895cb35c9322a.zip CMake-eeb58c5c34a888acbb422e66ff7895cb35c9322a.tar.gz CMake-eeb58c5c34a888acbb422e66ff7895cb35c9322a.tar.bz2 |
Tests: Add cases for typical CheckIPOSupported usage
Diffstat (limited to 'Tests/Module/CheckIPOSupported-CXX/main.cpp')
-rw-r--r-- | Tests/Module/CheckIPOSupported-CXX/main.cpp | 9 |
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; +} |