1 #ifndef TEST_INCOMPLETE_TYPE_HELPER_H 2 #define TEST_INCOMPLETE_TYPE_HELPER_H 3 4 #include "min_allocator.h" 5 6 namespace NS { 7 struct Incomplete; 8 } 9 10 template <class T> struct Holder { T value; }; 11 12 typedef Holder<NS::Incomplete> IncompleteHolder; 13 14 #endif 15