Home | History | Annotate | Download | only in test

Lines Matching refs:ReturnRef

70 using testing::ReturnRef;
569 // Tests that ReturnRef(v) works for reference types.
572 const Action<const int&(bool)> ret = ReturnRef(n); // NOLINT
577 // Tests that ReturnRef(v) is covariant.
581 Action<Base&()> a = ReturnRef(base);
584 a = ReturnRef(derived);