1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include <pstl/internal/pstl_config.h>
10
11static_assert(_PSTL_VERSION == 17000);
12static_assert(_PSTL_VERSION_MAJOR == 17);
13static_assert(_PSTL_VERSION_MINOR == 00);
14static_assert(_PSTL_VERSION_PATCH == 0);
15
16int
17main()
18{
19 return 0;
20}
21

source code of pstl/test/pstl/version.pass.cpp