libcxx initial import

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103490 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-05-11 19:42:16 +00:00
commit bc8d3f97eb
3893 changed files with 1209942 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
//===----------------------------------------------------------------------===//
//
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <string>
// Test for the existence of:
// basic_string typedef names
// typedef basic_string<char> string;
// typedef basic_string<char16_t> u16string;
// typedef basic_string<char32_t> u32string;
// typedef basic_string<wchar_t> wstring;
#include <string>
int main()
{
typedef std::string test1;
typedef std::wstring test2;
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
typedef std::u16string test3;
typedef std::u32string test4;
#endif
}