mirror of
https://github.com/triqs/dft_tools
synced 2025-01-09 20:48:36 +01:00
f5b936317d
git-subtree-dir: test/c++/gtest git-subtree-split: 3f05f651ae3621db58468153e32016bc1397800b
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
|