blob: c68a637f4b5c10607cb481f096a9e2364524b2c4 [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
#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);
}