https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90415

--- Comment #7 from Lei YU <mine260309 at gmail dot com> ---
Additional information.

std::experimental::fundamentals_v1::any has no problem, so the below code
compiles fine.

```
#include <experimental/any>
#include <tuple>
#include <type_traits>

bool is_copy_constructible_tuple_any() {
    return
std::is_copy_constructible<std::tuple<std::experimental::any>>::value;
}
```

Reply via email to