4 * This program checks if the compiler / platform supports template
5 * template parameters. The motivation for this test was a discussion
6 * on the development mailing list, and the documentation was captured
9 * http://bugzilla.dre.vanderbilt.edu/show_bug.cgi?id=3715
12 #include "test_config.h"
14 // Similar to Bug_3709_Regression_Test.cpp...
31 template<typename T
, template <typename
> class Tuple
>
38 run_main (int, ACE_TCHAR
*[])
40 ACE_START_TEST (ACE_TEXT("Compiler_Features_12_Test"));
42 // As usual, the exit status from the test is 0 on success, 1 on
46 Array
<int, Pair
> pairs
;
47 pairs
.array
[0].x1
= 0;
48 ACE_UNUSED_ARG (pairs
);
50 Array
<int, Triple
> triples
;
51 triples
.array
[1].t3
= 0;
52 ACE_UNUSED_ARG (triples
);