summaryrefslogtreecommitdiff
path: root/libcxx/test/std/utilities/utility/utility.underlying/to_underlying.verify.cpp
blob: 9236d6e284b5dc4fbd23e671bf177b22b27b597c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//===----------------------------------------------------------------------===//
//
// 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++03, c++11, c++14, c++17, c++20

// [utility.underlying], to_underlying
// template <class T>
//     constexpr underlying_type_t<T> to_underlying( T value ) noexcept; // C++2b

#include <utility>

struct S {};

void f() {
  std::to_underlying(125); // expected-error {{no matching function for call}}
  std::to_underlying(S{}); // expected-error {{no matching function for call}}
}