summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2222_Regression/test.cpp
blob: 8e6a7bec7ffa44692b062d3e3fc676bd2c74394b (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
main (int, char *[])
{
  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;
}