Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / preprocessor / test / clang_cuda.cu
1 # /* **************************************************************************
2 #  *                                                                          *
3 #  *     (C) Copyright Edward Diener 2019.
4 #  *     Distributed under the Boost Software License, Version 1.0. (See
5 #  *     accompanying file LICENSE_1_0.txt or copy at
6 #  *     http://www.boost.org/LICENSE_1_0.txt)
7 #  *                                                                          *
8 #  ************************************************************************** */
9 #
10 # /* See http://www.boost.org for most recent version. */
11 #
12 # include <libs/preprocessor/test/test_macro.h>
13
14 #if defined(__clang__) && defined(__CUDACC__) && defined(__CUDA__)
15
16 BEGIN BOOST_PP_VARIADICS == 1 END
17
18 #else
19
20 BEGIN 0 == 1 END
21
22 #endif
23
24 int main(void) {
25     return 0;
26 }