blob: 7662338d73c489c8146f8058d0e8b58b76532028 [file] [log] [blame]
#ifndef TEST_INCOMPLETE_TYPE_HELPER_H
#define TEST_INCOMPLETE_TYPE_HELPER_H
#include "min_allocator.h"
namespace NS {
struct Incomplete;
}
template <class T> struct Holder { T value; };
typedef Holder<NS::Incomplete> IncompleteHolder;
#endif