ut
ut copied to clipboard
type inequality operator returns true
Expected Behavior
expect( type<int> != type<int> );
Expect to evaluate false and fail
Actual Behavior
Evaluates true and passes
Steps to Reproduce the Problem
See type_<T>::operator!=()<T>
563 [[nodiscard]] constexpr auto operator!=(type_<T>) -> bool { return true; }
Looks like a cut-n-paste error, copied from operator== ?