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:
30
test/strings/string.classes/typedefs.pass.cpp
Normal file
30
test/strings/string.classes/typedefs.pass.cpp
Normal 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
|
||||
}
|
Reference in New Issue
Block a user