Louis Dionne 31cbe0f240 [libc++] Remove the c++98 Lit feature from the test suite
C++98 and C++03 are effectively aliases as far as Clang is concerned.
As such, allowing both std=c++98 and std=c++03 as Lit parameters is
just slightly confusing, but provides no value. It's similar to allowing
both std=c++17 and std=c++1z, which we don't do.

This was discovered because we had an internal bot that ran the test
suite under both c++98 AND c++03 -- one of which is redundant.

Differential Revision: https://reviews.llvm.org/D80926
2020-06-03 09:37:22 -04:00

92 lines
2.2 KiB
C++

// -*- 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
// <tuple>
// template <class TupleLike> tuple(TupleLike&&); // libc++ extension
// See llvm.org/PR31384
#include <tuple>
#include <cassert>
#include "test_macros.h"
int count = 0;
struct Explicit {
Explicit() = default;
explicit Explicit(int) {}
};
struct Implicit {
Implicit() = default;
Implicit(int) {}
};
template<class T>
struct Derived : std::tuple<T> {
using std::tuple<T>::tuple;
template<class U>
operator std::tuple<U>() && { ++count; return {}; }
};
template<class T>
struct ExplicitDerived : std::tuple<T> {
using std::tuple<T>::tuple;
template<class U>
explicit operator std::tuple<U>() && { ++count; return {}; }
};
int main(int, char**) {
{
std::tuple<Explicit> foo = Derived<int>{42}; ((void)foo);
assert(count == 1);
std::tuple<Explicit> bar(Derived<int>{42}); ((void)bar);
assert(count == 2);
}
count = 0;
{
std::tuple<Implicit> foo = Derived<int>{42}; ((void)foo);
assert(count == 1);
std::tuple<Implicit> bar(Derived<int>{42}); ((void)bar);
assert(count == 2);
}
count = 0;
{
static_assert(!std::is_convertible<
ExplicitDerived<int>, std::tuple<Explicit>>::value, "");
std::tuple<Explicit> bar(ExplicitDerived<int>{42}); ((void)bar);
assert(count == 1);
}
count = 0;
{
// FIXME: Libc++ incorrectly rejects this code.
#ifndef _LIBCPP_VERSION
std::tuple<Implicit> foo = ExplicitDerived<int>{42}; ((void)foo);
static_assert(std::is_convertible<
ExplicitDerived<int>, std::tuple<Implicit>>::value,
"correct STLs accept this");
#else
static_assert(!std::is_convertible<
ExplicitDerived<int>, std::tuple<Implicit>>::value,
"libc++ incorrectly rejects this");
#endif
assert(count == 0);
std::tuple<Implicit> bar(ExplicitDerived<int>{42}); ((void)bar);
assert(count == 1);
}
count = 0;
return 0;
}