Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3042_Regression / client.cpp
blobdd7872e3077e64728f0e41101729a63acc33728c
1 // -*- C++ -*-
2 #include "testC.h"
3 #include "ace/Log_Msg.h"
5 int
6 ACE_TMAIN(int, ACE_TCHAR *[])
8 try
10 // creation
11 Foo::Node node;
12 node.nodes.length (2);
14 catch (const CORBA::Exception& ex)
16 ex._tao_print_exception ("Bug_3042_Test test:");
17 return -1;
19 catch (...)
21 return -1;
23 return 0;