From f190e97885da12c040ec63a417a820ab6cd6a0a1 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Fri, 10 Dec 2010 19:22:00 +0000 Subject: [PATCH] This got accidentally removed git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@121502 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../function.objects/version.pass.cpp | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/utilities/function.objects/version.pass.cpp diff --git a/test/utilities/function.objects/version.pass.cpp b/test/utilities/function.objects/version.pass.cpp new file mode 100644 index 000000000..99d731a74 --- /dev/null +++ b/test/utilities/function.objects/version.pass.cpp @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// + +#include + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +}