You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
220 B

  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