blob: 73c4a349194a2a7190096143c4975407c94ee860 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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: libcpp-has-no-incomplete-ranges
#include <ranges>
// Test that we SFINAE away iota_view<bool>.
template<class T> std::ranges::iota_view<T> f(int);
template<class T> void f(...);
void test() {
f<bool>(42);
}