Files
libcxx/test/std/language.support/support.limits/support.limits.general/execution.version.pass.cpp
Stephan T. Lavavej 439de45011 [libcxx] [test] Strip trailing whitespace. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@346826 91177308-0d34-0410-b5e6-96231b3b80d8
2018-11-14 03:06:06 +00:00

34 lines
831 B
C++

//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
//
// <execution> feature macros
/* Constant Value
__cpp_lib_execution 201603L
*/
// XFAIL
// #include <execution>
#include "test_macros.h"
int main()
{
// ensure that the macros that are supposed to be defined in <execution> are defined.
/*
#if !defined(__cpp_lib_fooby)
# error "__cpp_lib_fooby is not defined"
#elif __cpp_lib_fooby < 201606L
# error "__cpp_lib_fooby has an invalid value"
#endif
*/
}