Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_3632_Regression / test.cpp
blob3cba4b3845742d078514ce69f6de2e783f4a7735
1 #include "testC.h"
3 int
4 ACE_TMAIN (int, ACE_TCHAR *[])
6 try
8 Test::bounded_string_seq seq;
9 seq.length (11);
10 ACE_TEST_ASSERT (seq.maximum () == 10);
12 catch (::CORBA::BAD_PARAM const &)
14 // ignore this exception since it's expected.
16 catch (::CORBA::Exception const &)
18 return 1;
21 return 0;