gcc/libstdc++-v3/testsuite/23_containers
Jonathan Wakely 7ac205673c PR libstdc++/85965 delay static assertions until types are complete
The static assertions added for PR libstdc++/48101 were at class scope
and so were evaluated too eagerly, when it might not be possible to
determine whether the function objects are invocable with the key types.
The problematic cases are where the key type is not known to be
convertible to the argument type(s) of the function object until later,
after a type has been completed. Specifically, if the key type is a
pointer to a derived class and the function object's argument type is a
pointer to a base class, then the derived-to-base conversion is only
valid once the derived type is complete.

By moving the static assertions to the destructor they will only be
evaluated when the destructor is instantiated, at which point whether
the key type can be passed to the function object should be knowable.
The ideal place to do the checks would be only when the function objects
are actually invoked, but that would mean adding the checks in numerous
places, so the destructor is used instead.

The tests need to be adjusted because the "required from here" line is
now the location of the destructor, not the point of instantiation in
the test file. For the map and multimap tests which check two
specializations, the dg-error matching the assertion text matches both
cases. Also check the diagnostic output for the template arguments, to
ensure both specializations trigger the assertion.

	PR libstdc++/85965
	* include/bits/hashtable.h (_Hashtable): Move static assertions to
	destructor so they are not evaluated until the _Key type is complete.
	* include/bits/stl_tree.h (_Rb_tree): Likewise.
	* testsuite/23_containers/set/85965.cc: New test.
	* testsuite/23_containers/unordered_set/85965.cc: New test.
	* testsuite/23_containers/map/48101_neg.cc: Replace "here" errors
	with regexp matching the corresponding _Rb_tree specialization.
	* testsuite/23_containers/multimap/48101_neg.cc: Likewise.
	* testsuite/23_containers/multiset/48101_neg.cc: Remove "here" error.
	* testsuite/23_containers/set/48101_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/48101_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/48101_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/48101_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/48101_neg.cc: Likewise.

From-SVN: r269949
2019-03-26 15:28:48 +00:00
..
array Update copyright years. 2019-01-01 13:31:55 +01:00
bitset Update copyright years. 2019-01-01 13:31:55 +01:00
deque Define __cpp_lib_erase_if feature test macro 2019-01-10 13:49:31 +00:00
forward_list Define __cpp_lib_erase_if feature test macro 2019-01-10 13:49:31 +00:00
headers Update copyright years. 2019-01-01 13:31:55 +01:00
list Define __cpp_lib_erase_if feature test macro 2019-01-10 13:49:31 +00:00
map PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
multimap PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
multiset PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
priority_queue LWG 2537 fix priority_queue constructors to establish invariant 2019-02-14 14:10:19 +00:00
queue PR libstdc++/89128 add deduction guides for container adaptors 2019-02-05 22:58:22 +00:00
set PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
stack PR libstdc++/89128 add deduction guides for container adaptors 2019-02-05 22:58:22 +00:00
unordered_map PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
unordered_multimap PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
unordered_multiset PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
unordered_set PR libstdc++/85965 delay static assertions until types are complete 2019-03-26 15:28:48 +00:00
vector PR libstdc++/89416 fix __is_move_insertable trait 2019-02-21 20:47:43 +00:00