Ticket #1699: test.cc

File test.cc, 186 bytes (added by adam.buchbinder@…, 15 years ago)

Test case.

Line 
1#include <locale>
2#include <string>
3#include <boost/format.hpp>
4int main()
5{
6 boost::format a("foo", std::locale());
7 boost::format b(std::string("foo"), std::locale());
8 return 0;
9}