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 // UNSUPPORTED: c++03, c++11 10 11 #include <string> 12 13 #include "test_macros.h" 14 15 static_assert(!noexcept(std::operator""s(std::declval<const char*>(), std::declval<int>())), ""); 16 #ifndef TEST_HAS_NO_CHAR8_T 17 static_assert(!noexcept(std::operator""s(std::declval<const char8_t*>(), std::declval<int>())), ""); 18 #endif 19 static_assert(!noexcept(std::operator""s(std::declval<const char16_t*>(), std::declval<int>())), ""); 20 static_assert(!noexcept(std::operator""s(std::declval<const char32_t*>(), std::declval<int>())), ""); 21 #ifndef TEST_HAS_NO_WIDE_CHARACTERS 22 static_assert(!noexcept(std::operator""s(std::declval<const wchar_t*>(), std::declval<int>())), ""); 23 #endif 24