test: one kind_of test added to reference tests

This commit is contained in:
Mateusz Pusz
2024-10-15 21:07:46 +02:00
parent 21784b125e
commit b5ca8c78eb

View File

@ -256,6 +256,7 @@ static_assert(metre / second != length[metre] / time[second]);
static_assert(metre / time[second] == length[metre] / second);
static_assert(is_of_type<metre / time[second], decltype(length[metre] / second)>);
static_assert(is_of_type<metre / time[second], decltype(length[metre] / time[second])>);
static_assert(kind_of<length>[metre] == metre);
template<auto QS, auto U>
concept invalid_unit = !requires { QS[U]; };