Searched refs:MismatchType (Results 1 – 1 of 1) sorted by relevance
42 struct MismatchType { struct43 explicit MismatchType(int) {} in MismatchType() argument44 explicit MismatchType(char*) {} in MismatchType() argument45 explicit MismatchType(int*) = delete;46 MismatchType& operator=(int) { return *this; } in operator =() argument47 MismatchType& operator=(int*) { return *this; } in operator =() argument48 MismatchType& operator=(char*) = delete;78 assert_assignable<MismatchType, int>(); in test_sfinae()79 assert_assignable<MismatchType, int*, false>(); in test_sfinae()80 assert_assignable<MismatchType, char*, false>(); in test_sfinae()