Comment new tests.

This commit is contained in:
jzmaddock
2015-10-18 18:18:37 +01:00
parent 0abd5557c0
commit 1787274280

View File

@ -23,6 +23,11 @@
int main()
{
// To detect possible binary mismatches between the installed ICU build, and whatever
// C++ std lib's we're using, we need to:
// * Make sure we call ICU C++ API's
// * Make sure we call std lib C++ API's as well (cout).
// * Be sure this program is run, not just built.
UErrorCode err = U_ZERO_ERROR;
UChar32 c = ::u_charFromName(U_UNICODE_CHAR_NAME, "GREEK SMALL LETTER ALPHA", &err);
std::cout << (int)c << std::endl;