// modifier not valid for conversion specifier
VERIFY( not is_format_string_for("{:%Ea}", t) );
VERIFY( not is_format_string_for("{:%Oa}", t) );
+
+ // more than one modifier (PR libstdc++/110708)
+ VERIFY( not is_format_string_for("{:%EEc}", t) );
+ VERIFY( not is_format_string_for("{:%EEEc}", t) );
+ VERIFY( not is_format_string_for("{:%OOd}", t) );
+ VERIFY( not is_format_string_for("{:%OOOd}", t) );
+ VERIFY( not is_format_string_for("{:%EEy}", t) );
+ VERIFY( not is_format_string_for("{:%OOy}", t) );
+ VERIFY( not is_format_string_for("{:%OEy}", t) );
+ VERIFY( not is_format_string_for("{:%EOy}", t) );
}
template<typename I>