mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-24 03:32:35 +08:00

It turns out that I un-XFAILed too many tests in r353210: some tests actually fail whether exceptions are enabled or not because they use types that are marked as unavailable even when exceptions are disabled. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@353215 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
815 B
C++
28 lines
815 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
|
// XFAIL: dylib-has-no-bad_optional_access
|
|
|
|
// <optional>
|
|
|
|
// class bad_optional_access : public exception
|
|
|
|
#include <optional>
|
|
#include <type_traits>
|
|
|
|
int main(int, char**)
|
|
{
|
|
using std::bad_optional_access;
|
|
|
|
static_assert(std::is_base_of<std::exception, bad_optional_access>::value, "");
|
|
static_assert(std::is_convertible<bad_optional_access*, std::exception*>::value, "");
|
|
|
|
return 0;
|
|
}
|