2 * @file Bug_3709_Regression_Test.cpp
4 * Reproduces the problems reported in bug 3709
5 * http://bugzilla.dre.vanderbilt.edu/show_bug.cgi?id=3709
8 #include "test_config.h"
10 #include "ace/OS_NS_stdio.h"
15 template<template<typename U
, typename
= std::allocator
<U
> > class container
, typename DT
>
16 container
<DT
> initializer(const DT
&d
)
24 run_main (int, ACE_TCHAR
*[])
26 ACE_START_TEST (ACE_TEXT ("Bug_3709_Regression_Test"));
28 vector
<int> v
= initializer
<vector
>(5);