summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2222_Regression/test.cpp
blob: 95a11764105bd7e51a5c9749067107d8ea3f4dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

#include "TestCaseC.h"

/**
* This test does not run - successful compile and link == successful test.
*/
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
  Array_Typedef_slice*  body3 = Array_Typedef_alloc();
  Array_Typedef_slice* body31 = Array_Typedef_dup (body3);
  Array_Typedef_free (body3);
  Array_Typedef_free (body31);

  Typedef_Of_Imported_Array_Typedef_slice*  body4 = Typedef_Of_Imported_Array_Typedef_alloc ();
  Typedef_Of_Imported_Array_Typedef_slice*  body41 = Typedef_Of_Imported_Array_Typedef_dup (body4);
  Typedef_Of_Imported_Array_Typedef_free (body4);
  Typedef_Of_Imported_Array_Typedef_free (body41);

  return 0;
}