00001 #include <archon/util/exception.H> 00002 #include <archon/util/ref.H> 00003 00004 using namespace std; 00005 using namespace Archon::Utilities; 00006 00007 int main() throw() 00008 { 00009 set_unexpected(Exception::terminal<exceptionCatchInfo>); 00010 set_terminate (Exception::terminal<exceptionCatchInfo>); 00011 00012 RefAny r; 00013 r->getUseCount(); 00014 00015 return 0; 00016 }