Searched refs:MismatchType (Results 1 – 1 of 1) sorted by relevance
41 struct MismatchType { struct42 explicit MismatchType(int) {} in MismatchType() function43 explicit MismatchType(char*) {} in MismatchType() function44 explicit MismatchType(int*) = delete;45 MismatchType& operator=(int) { return *this; } in operator =() argument46 MismatchType& operator=(int*) { return *this; } in operator =() argument47 MismatchType& operator=(char*) = delete;77 assert_assignable<MismatchType, int>(); in test_sfinae()78 assert_assignable<MismatchType, int*, false>(); in test_sfinae()79 assert_assignable<MismatchType, char*, false>(); in test_sfinae()