]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/std/language.support/support.types/byteops/rshift.assign.fail.cpp
Vendor import of libc++ trunk r300422:
[FreeBSD/FreeBSD.git] / test / std / language.support / support.types / byteops / rshift.assign.fail.cpp
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include <cstddef>
11 #include <test_macros.h>
12
13 // UNSUPPORTED: c++98, c++03, c++11, c++14
14 // The following compilers don't like "std::byte b1{1}"
15 // UNSUPPORTED: clang-3.5, clang-3.6, clang-3.7, clang-3.8
16 // UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0
17
18 // template <class IntegerType>
19 //   constexpr byte operator>>(byte& b, IntegerType shift) noexcept;
20 // This function shall not participate in overload resolution unless 
21 //   is_integral_v<IntegerType> is true.
22
23
24 constexpr std::byte test(std::byte b) {
25         return b >>= 2.0;
26         }
27
28
29 int main () {
30         constexpr std::byte b1 = test(std::byte{1});
31 }