gmock-function-mocker_nc.cc 220 B

12345678910111213141516
  1. #include "gmock/gmock.h"
  2. #include <memory>
  3. #include <string>
  4. #if defined(TEST_MOCK_METHOD_INVALID_CONST_SPEC)
  5. struct Base {
  6. MOCK_METHOD(int, F, (), (onst));
  7. };
  8. #else
  9. // Sanity check - this should compile.
  10. #endif