mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
17 lines
220 B
C++
17 lines
220 B
C++
|
#include "gmock/gmock.h"
|
||
|
|
||
|
#include <memory>
|
||
|
#include <string>
|
||
|
|
||
|
#if defined(TEST_MOCK_METHOD_INVALID_CONST_SPEC)
|
||
|
|
||
|
struct Base {
|
||
|
MOCK_METHOD(int, F, (), (onst));
|
||
|
};
|
||
|
|
||
|
#else
|
||
|
|
||
|
// Sanity check - this should compile.
|
||
|
|
||
|
#endif
|