Home | History | Annotate | Download | only in test

Lines Matching refs:AddReference

237 using testing::internal::AddReference;
7159 // Tests that AddReference does not affect reference types.
7161 CompileAssertTypesEqual<int&, AddReference<int&>::type>();
7162 CompileAssertTypesEqual<const char&, AddReference<const char&>::type>();
7165 // Tests that AddReference adds reference to non-reference types.
7167 CompileAssertTypesEqual<int&, AddReference<int>::type>();
7168 CompileAssertTypesEqual<const char&, AddReference<const char>::type>();