llvm-project/libcxx/test/std/ranges/range.access/range.prim/empty.incomplete.verify.cpp
zoecarver db13f832a1 [libcxx][tests] Fix incomplte.verify tests by disabling them on clang-10.
For some reason clang-10 can't match the expected errors produced by
passing icomplete arrays to range access functions. Disabling the tests
is a stop-gap solution to fix the bots.
2021-05-11 09:46:18 -07:00

54 lines
1.5 KiB
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++03, c++11, c++14, c++17
// UNSUPPORTED: libcpp-no-concepts
// UNSUPPORTED: clang-10
// UNSUPPORTED: gcc-10
// std::ranges::empty
#include <ranges>
struct Incomplete;
void f(Incomplete arr[]) {
// expected-error@*:* {{is SFINAE-unfriendly on arrays of an incomplete type.}}
// expected-error@*:* {{call to deleted function call operator in type}}
// expected-error@*:* {{attempt to use a deleted function}}
std::ranges::begin(arr);
}
void f(Incomplete(&arr)[]) {
// expected-error@*:* {{is SFINAE-unfriendly on arrays of an incomplete type.}}
std::ranges::begin(arr);
}
void f(Incomplete(&&arr)[]) {
// expected-error@*:* {{is SFINAE-unfriendly on arrays of an incomplete type.}}
std::ranges::begin(arr);
}
void f2(Incomplete arr[2]) {
// expected-error@*:* {{call to deleted function call operator in type}}
// expected-error@*:* {{attempt to use a deleted function}}
std::ranges::begin(arr);
}
void f(Incomplete(&arr)[2]) {
std::ranges::begin(arr);
}
void f(Incomplete(&&arr)[2]) {
std::ranges::begin(arr);
}
void f(Incomplete(&arr)[2][2]) {
std::ranges::begin(arr);
}