Searched defs:ConvertibleType (Results 1 – 1 of 1) sorted by relevance
299 struct ConvertibleType { in TEST_F() struct300 int val; in TEST_F()302 explicit ConvertibleType(int val) : val(val) {} in TEST_F() argument303 explicit operator int() const { return val; } in TEST_F()304 bool operator==(const int& other) const { return val == other; } in TEST_F()