blob: 8abb2c882b8722d82aad29f7295bcfbc82d7439f [file] [log] [blame]
/* Prevent error C2491: 'std::numpunct<_Elem>::id': definition of dllimport static data member not allowed */
#if defined(_MSC_VER)
#define __FORCE_INSTANCE
#endif
#include <string>
#include <sstream>
using UniChar = unsigned short;
using StringType = std::basic_string<UniChar>;
using StreamType = std::basic_ostringstream<UniChar>;
int main()
{
StringType str;
StreamType ss;
ss << str;
return 0;
}