summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/example/pkg-config/test1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/tools/build/example/pkg-config/test1.cpp')
-rw-r--r--src/boost/tools/build/example/pkg-config/test1.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/boost/tools/build/example/pkg-config/test1.cpp b/src/boost/tools/build/example/pkg-config/test1.cpp
new file mode 100644
index 000000000..c554928c0
--- /dev/null
+++ b/src/boost/tools/build/example/pkg-config/test1.cpp
@@ -0,0 +1,11 @@
+// Copyright 2019 Dmitry Arkhipov
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE.txt or copy at
+// https://www.bfgroup.xyz/b2/LICENSE.txt)
+
+
+#include <string>
+
+int main() {
+ return QWERTY == std::string("uiop") ? EXIT_SUCCESS : EXIT_FAILURE ;
+}