Closed
Description
Clang incorrectly rejects the following because it fails to deduce the correct size for the array/initializer list
static constexpr auto std_to_char_array = std::to_array<char>({
#embed __FILE__
, '\0'
});
static constexpr auto initializer_list = std::initializer_list<char>{
#embed __FILE__
, '\0'
};