blob: 92062eb98889e0c45222d35c3b4aaa584cfc0d82 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// This test ensures that passing `-fexperimental-library` results in experimental
// library features being enabled.
// GCC does not support the -fexperimental-library flag
// UNSUPPORTED: gcc
// ADDITIONAL_COMPILE_FLAGS: -fexperimental-library
#include <version>
#ifdef _LIBCPP_HAS_NO_INCOMPLETE_PSTL
# error "-fexperimental-library should enable the PSTL"
#endif
#ifdef _LIBCPP_HAS_NO_EXPERIMENTAL_STOP_TOKEN
# error "-fexperimental-library should enable the stop_token"
#endif
#ifdef _LIBCPP_HAS_NO_INCOMPLETE_TZDB
# error "-fexperimental-library should enable the chrono TZDB"
#endif