Home | History | Annotate | Download | only in test

Lines Matching refs:AddReference

236 using testing::internal::AddReference;
7268 // Tests that AddReference does not affect reference types.
7270 CompileAssertTypesEqual<int&, AddReference<int&>::type>();
7271 CompileAssertTypesEqual<const char&, AddReference<const char&>::type>();
7274 // Tests that AddReference adds reference to non-reference types.
7276 CompileAssertTypesEqual<int&, AddReference<int>::type>();
7277 CompileAssertTypesEqual<const char&, AddReference<const char>::type>();