#include "array.h" namespace { class Bleh { Array m_array; public: Bleh() : m_array( 16 ){ } }; void testAutoArray(){ Array array( 32 ); } }