Home | History | Annotate | Download | only in test

Lines Matching full:const_converted

170   ConstAndNonConstCastable(bool* converted, bool* const_converted)
171 : converted_(converted), const_converted_(const_converted) {}
188 bool const_converted = false;
189 ConstAndNonConstCastable castable(&converted, &const_converted);
192 EXPECT_FALSE(const_converted);
195 const_converted = false;
196 const ConstAndNonConstCastable const_castable(&converted, &const_converted);
199 EXPECT_TRUE(const_converted);